@eohjsc/react-native-smart-city 0.7.31 → 0.7.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +5 -5
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
// original location:
|
|
11
11
|
// - https://github.com/facebook/react-native/blob/0.58-stable/local-cli/templates/HelloWorld/android/app/build.gradle
|
|
12
12
|
|
|
13
|
-
def DEFAULT_COMPILE_SDK_VERSION =
|
|
14
|
-
def DEFAULT_BUILD_TOOLS_VERSION = '
|
|
13
|
+
def DEFAULT_COMPILE_SDK_VERSION = 34
|
|
14
|
+
def DEFAULT_BUILD_TOOLS_VERSION = '34.0.0'
|
|
15
15
|
def DEFAULT_MIN_SDK_VERSION = 24
|
|
16
|
-
def DEFAULT_TARGET_SDK_VERSION =
|
|
16
|
+
def DEFAULT_TARGET_SDK_VERSION = 34
|
|
17
17
|
|
|
18
18
|
def safeExtGet(prop, fallback) {
|
|
19
19
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
@@ -111,12 +111,12 @@ afterEvaluate { project ->
|
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
task androidJavadocJar(type: Jar, dependsOn: androidJavadoc) {
|
|
114
|
-
|
|
114
|
+
archiveClassifier = 'javadoc'
|
|
115
115
|
from androidJavadoc.destinationDir
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
task androidSourcesJar(type: Jar) {
|
|
119
|
-
|
|
119
|
+
archiveClassifier = 'sources'
|
|
120
120
|
from android.sourceSets.main.java.srcDirs
|
|
121
121
|
include '**/*.java'
|
|
122
122
|
}
|