File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
3
android {
4
- compileSdkVersion 25
5
- buildToolsVersion " 25.0.2 "
4
+ compileSdkVersion rootProject . ext . compileSdkVersion
5
+ buildToolsVersion rootProject . ext . buildToolsVersion
6
6
7
7
defaultConfig {
8
- minSdkVersion 15
9
- targetSdkVersion 25
8
+ minSdkVersion rootProject . ext . minSdkVersion
9
+ targetSdkVersion rootProject . ext . targetSdkVersion
10
10
versionCode 1
11
11
versionName " 1.0"
12
12
@@ -26,6 +26,6 @@ dependencies {
26
26
androidTestCompile(' com.android.support.test.espresso:espresso-core:2.2.2' , {
27
27
exclude group : ' com.android.support' , module : ' support-annotations'
28
28
})
29
- compile ' com.android.support:appcompat-v7:25.3.0 '
29
+ compile ( " com.android.support:appcompat-v7:${ rootProject.ext.supportVersion } " )
30
30
testCompile ' junit:junit:4.12'
31
31
}
You can’t perform that action at this time.
0 commit comments