File tree 2 files changed +20
-20
lines changed
2 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 1
1
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
+ }
6
10
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
+ }
9
14
}
10
15
}
11
16
12
17
apply plugin : ' com.android.library'
13
18
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]
20
21
}
21
22
22
23
android {
23
- compileSdkVersion getExtOrIntegerDefault (' compileSdkVersion' )
24
- buildToolsVersion getExtOrDefault( ' buildToolsVersion ' )
24
+ compileSdkVersion safeExtGet (' compileSdkVersion' )
25
+
25
26
defaultConfig {
26
- minSdkVersion 16
27
- targetSdkVersion getExtOrIntegerDefault (' targetSdkVersion' )
27
+ minSdkVersion safeExtGet( ' minSdkVersion ' )
28
+ targetSdkVersion safeExtGet (' targetSdkVersion' )
28
29
versionCode 1
29
30
versionName " 1.0"
30
31
}
@@ -114,6 +115,5 @@ repositories {
114
115
}
115
116
116
117
dependencies {
117
- // noinspection GradleDynamicVersion
118
118
api ' com.facebook.react:react-native:+'
119
119
}
Original file line number Diff line number Diff line change 1
- Restart_compileSdkVersion =28
2
- Restart_buildToolsVersion =28.0.3
3
- Restart_targetSdkVersion =28
1
+ compileSdkVersion =28
2
+ minSdkVersion =16
3
+ targetSdkVersion =28
You can’t perform that action at this time.
0 commit comments