]> matita.cs.unibo.it Git - logicplayer.git/blob - mainActivity/app/build.gradle
Ported to latest version of Android SDK
[logicplayer.git] / mainActivity / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 19
5     buildToolsVersion "23.0.1"
6
7     defaultConfig {
8         applicationId "com.example.furt.myapplication"
9         minSdkVersion 16
10         targetSdkVersion 19
11         compileOptions {
12             sourceCompatibility JavaVersion.VERSION_1_7
13             targetCompatibility JavaVersion.VERSION_1_7
14         }
15     }
16
17     buildTypes {
18         release {
19             minifyEnabled false
20             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
21         }
22     }
23 }
24
25 dependencies {
26     compile 'com.android.support:support-v4:19.1.0'
27 }