File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,17 @@ buildscript {
99
1010apply plugin : ' com.android.library'
1111
12+ def DEFAULT_COMPILE_SDK_VERSION = 25
13+ def DEFAULT_BUILD_TOOLS_VERSION = " 25.0.2"
14+ def DEFAULT_TARGET_SDK_VERSION = 25
15+
1216android {
13- compileSdkVersion 25
14- buildToolsVersion " 25.0.2 "
17+ compileSdkVersion project . hasProperty( ' compileSdkVersion ' ) ? project . compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
18+ buildToolsVersion project . hasProperty( ' buildToolsVersion ' ) ? project . buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
1519
1620 defaultConfig {
1721 minSdkVersion 16
18- targetSdkVersion 25
22+ targetSdkVersion project . hasProperty( ' targetSdkVersion ' ) ? project . targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
1923 versionCode 1
2024 versionName " 1.0"
2125 ndk {
You can’t perform that action at this time.
0 commit comments