OLD | NEW |
1 apply plugin: 'com.android.library' | 1 apply plugin: 'com.android.library' |
2 | 2 |
3 android { | 3 android { |
4 compileSdkVersion 23 | 4 compileSdkVersion 23 |
5 buildToolsVersion "23.0.1" | 5 buildToolsVersion "23.0.2" |
6 | 6 |
7 defaultConfig { | 7 defaultConfig { |
8 minSdkVersion 15 | 8 minSdkVersion 15 |
9 targetSdkVersion 23 | 9 targetSdkVersion 23 |
10 versionCode 1 | 10 versionCode 1 |
11 versionName "1.0" | 11 versionName "1.0" |
12 } | 12 } |
13 buildTypes { | 13 buildTypes { |
14 release { | 14 release { |
15 minifyEnabled false | 15 minifyEnabled false |
16 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'progu
ard-rules.pro' | 16 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'progu
ard-rules.pro' |
17 } | 17 } |
18 } | 18 } |
19 } | 19 } |
20 | 20 |
21 dependencies { | 21 dependencies { |
22 compile fileTree(dir: 'libs', include: ['*.jar']) | 22 compile fileTree(dir: 'libs', include: ['*.jar']) |
23 compile 'com.android.support:appcompat-v7:23.1.1' | 23 compile 'com.android.support:appcompat-v7:23.2.0' |
24 provided 'com.android.support:customtabs:23.1.1' | 24 provided 'com.android.support:customtabs:23.2.0' |
25 } | 25 } |
OLD | NEW |