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 11
22apply plugin : ' com.android.library'
33
4+ def DEFAULT_COMPILE_SDK_VERSION = 26
5+ def DEFAULT_BUILD_TOOLS_VERSION = " 26.0.2"
6+ def DEFAULT_TARGET_SDK_VERSION = 26
7+
48android {
5- compileSdkVersion 26
6- buildToolsVersion " 26.0.2 "
9+ compileSdkVersion rootProject . hasProperty( ' compileSdkVersion ' ) ? rootProject . compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
10+ buildToolsVersion rootProject . hasProperty( ' buildToolsVersion ' ) ? rootProject . buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
711
812 defaultConfig {
913 minSdkVersion 16
10- targetSdkVersion 26
14+ targetSdkVersion rootProject . hasProperty( ' targetSdkVersion ' ) ? rootProject . targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
1115 versionCode 1
1216 versionName " 1.0"
1317 ndk {
You can’t perform that action at this time.
0 commit comments