@eohjsc/react-native-smart-city 0.6.2-rc7 → 0.6.2-rc9
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
|
@@ -24,6 +24,10 @@ def safeExtGet(prop, fallback) {
|
|
|
24
24
|
apply plugin: 'com.android.library'
|
|
25
25
|
apply plugin: 'maven-publish'
|
|
26
26
|
|
|
27
|
+
configurations {
|
|
28
|
+
compileClasspath
|
|
29
|
+
}
|
|
30
|
+
|
|
27
31
|
buildscript {
|
|
28
32
|
// The Android Gradle plugin is only required when opening the android folder stand-alone.
|
|
29
33
|
// This avoids unnecessary downloads and potential conflicts when the library is included as a
|
|
@@ -111,7 +115,7 @@ afterEvaluate { project ->
|
|
|
111
115
|
task androidJavadoc(type: Javadoc) {
|
|
112
116
|
source = android.sourceSets.main.java.srcDirs
|
|
113
117
|
classpath += files(android.bootClasspath)
|
|
114
|
-
classpath += files(project.getConfigurations().getByName('
|
|
118
|
+
classpath += files(project.getConfigurations().getByName('compileClasspath').asList())
|
|
115
119
|
include '**/*.java'
|
|
116
120
|
}
|
|
117
121
|
|