@eohjsc/react-native-smart-city 0.6.2-rc3 → 0.6.2-rc5
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 -1
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -22,6 +22,10 @@ def safeExtGet(prop, fallback) {
|
|
|
22
22
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
+
configurations {
|
|
26
|
+
compileClasspath
|
|
27
|
+
}
|
|
28
|
+
|
|
25
29
|
buildscript {
|
|
26
30
|
// The Android Gradle plugin is only required when opening the android folder stand-alone.
|
|
27
31
|
// This avoids unnecessary downloads and potential conflicts when the library is included as a
|
|
@@ -106,7 +110,7 @@ afterEvaluate { project ->
|
|
|
106
110
|
task androidJavadoc(type: Javadoc) {
|
|
107
111
|
source = android.sourceSets.main.java.srcDirs
|
|
108
112
|
classpath += files(android.bootClasspath)
|
|
109
|
-
classpath += files(project.getConfigurations().getByName('
|
|
113
|
+
classpath += files(project.getConfigurations().getByName('compileClasspath').asList())
|
|
110
114
|
include '**/*.java'
|
|
111
115
|
}
|
|
112
116
|
|