Skip to content

Commit b52d79a

Browse files
committed
modify build.gradle
1 parent d6ea2a7 commit b52d79a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

apputils/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion "25.0.2"
4+
compileSdkVersion rootProject.ext.compileSdkVersion
5+
buildToolsVersion rootProject.ext.buildToolsVersion
66

77
defaultConfig {
8-
minSdkVersion 15
9-
targetSdkVersion 25
8+
minSdkVersion rootProject.ext.minSdkVersion
9+
targetSdkVersion rootProject.ext.targetSdkVersion
1010
versionCode 1
1111
versionName "1.0"
1212

@@ -26,6 +26,6 @@ dependencies {
2626
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
2727
exclude group: 'com.android.support', module: 'support-annotations'
2828
})
29-
compile 'com.android.support:appcompat-v7:25.3.0'
29+
compile ("com.android.support:appcompat-v7:${rootProject.ext.supportVersion}")
3030
testCompile 'junit:junit:4.12'
3131
}

0 commit comments

Comments
 (0)