This repository was archived by the owner on Jan 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ def DEFAULT_SUPPORT_LIB_VERSION = "23.1.1"
22
22
def DEFAULT_GOOGLE_PLAY_SERVICES_VERSION = " +"
23
23
24
24
android {
25
- compileSdkVersion 26
26
- buildToolsVersion " 26.0.3 "
25
+ compileSdkVersion project . hasProperty( ' compileSdkVersion ' ) ? project . compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
26
+ buildToolsVersion project . hasProperty( ' buildToolsVersion ' ) ? project . buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
27
27
28
28
defaultConfig {
29
29
minSdkVersion 16
30
- targetSdkVersion 26
30
+ targetSdkVersion project . hasProperty( ' targetSdkVersion ' ) ? project . targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
31
31
versionCode 1
32
32
versionName " 1.0"
33
33
ndk {
@@ -48,7 +48,7 @@ dependencies {
48
48
49
49
compile fileTree(dir : ' libs' , include : [' *.jar' ])
50
50
testCompile ' junit:junit:4.12'
51
- compile ' com.android.support:appcompat-v7:26.0.+ '
51
+ compile " com.android.support:appcompat-v7:$s upportLibVersion "
52
52
compile ' com.facebook.react:react-native:+'
53
53
compile " com.google.android.gms:play-services-gcm:$googlePlayServicesVersion "
54
54
compile ' me.leolin:ShortcutBadger:1.1.8@aar'
You can’t perform that action at this time.
0 commit comments