@nativescript/android 8.4.0-alpha.5 → 8.4.0-alpha.6
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/framework/app/build.gradle +8 -7
- package/framework/app/libs/runtime-libs/nativescript-optimized-with-inspector.aar +0 -0
- package/framework/app/libs/runtime-libs/nativescript-optimized.aar +0 -0
- package/framework/app/libs/runtime-libs/nativescript-regular.aar +0 -0
- package/framework/build-tools/android-metadata-generator.jar +0 -0
- package/framework/build-tools/dts-generator.jar +0 -0
- package/framework/build-tools/static-binding-generator.jar +0 -0
- package/package.json +1 -1
|
@@ -779,17 +779,18 @@ task buildMetadata(type: BuildToolTask) {
|
|
|
779
779
|
def selectedBuildType = project.ext.selectedBuildType
|
|
780
780
|
|
|
781
781
|
rootProject.subprojects {
|
|
782
|
+
|
|
782
783
|
def projectClassesDir = new File("$it.buildDir/intermediates/javac")
|
|
783
784
|
def projectKotlinClassesDir = new File("$it.buildDir/tmp/kotlin-classes")
|
|
784
|
-
|
|
785
|
-
assert projectClassesDir.exists()
|
|
786
785
|
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
786
|
+
if (projectClassesDir.exists()) {
|
|
787
|
+
def projectClassesSubDirs = projectClassesDir.listFiles()
|
|
788
|
+
for (File subDir : projectClassesSubDirs) {
|
|
789
|
+
if (!classesSubDirs.contains(subDir)) {
|
|
790
|
+
classesSubDirs.add(subDir)
|
|
791
|
+
}
|
|
792
|
+
}
|
|
791
793
|
}
|
|
792
|
-
}
|
|
793
794
|
|
|
794
795
|
if (projectKotlinClassesDir.exists()) {
|
|
795
796
|
def projectKotlinClassesSubDirs = projectKotlinClassesDir.listFiles();
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED