Skip to content

Commit

Permalink
modify build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenCoder committed Mar 23, 2017
1 parent d6ea2a7 commit b52d79a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions apputils/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
minSdkVersion 15
targetSdkVersion 25
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"

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

0 comments on commit b52d79a

Please sign in to comment.