Skip to content

Commit 523494d

Browse files
authoredMay 5, 2020
fixed Gradle setup (#131)
1 parent c9bbd37 commit 523494d

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed
 

‎android/build.gradle

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
11
buildscript {
2-
repositories {
3-
google()
4-
jcenter()
5-
}
2+
// The Android Gradle plugin is only required when opening the android folder stand-alone.
3+
// This avoids unnecessary downloads and potential conflicts when the library is included as a
4+
// module dependency in an application project.
5+
if (project == rootProject) {
6+
repositories {
7+
google()
8+
jcenter()
9+
}
610

7-
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.2.1'
11+
dependencies {
12+
classpath("com.android.tools.build:gradle:3.6.3")
13+
}
914
}
1015
}
1116

1217
apply plugin: 'com.android.library'
1318

14-
def getExtOrDefault(name) {
15-
return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties['Restart_' + name]
16-
}
17-
18-
def getExtOrIntegerDefault(name) {
19-
return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties['Restart_' + name]).toInteger()
19+
def safeExtGet(name) {
20+
rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties[name]
2021
}
2122

2223
android {
23-
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
24-
buildToolsVersion getExtOrDefault('buildToolsVersion')
24+
compileSdkVersion safeExtGet('compileSdkVersion')
25+
2526
defaultConfig {
26-
minSdkVersion 16
27-
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
27+
minSdkVersion safeExtGet('minSdkVersion')
28+
targetSdkVersion safeExtGet('targetSdkVersion')
2829
versionCode 1
2930
versionName "1.0"
3031
}
@@ -114,6 +115,5 @@ repositories {
114115
}
115116

116117
dependencies {
117-
// noinspection GradleDynamicVersion
118118
api 'com.facebook.react:react-native:+'
119119
}

‎android/gradle.properties

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Restart_compileSdkVersion=28
2-
Restart_buildToolsVersion=28.0.3
3-
Restart_targetSdkVersion=28
1+
compileSdkVersion=28
2+
minSdkVersion=16
3+
targetSdkVersion=28

0 commit comments

Comments
 (0)
Please sign in to comment.