@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.
@@ -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
- def projectClassesSubDirs = projectClassesDir.listFiles()
788
- for (File subDir : projectClassesSubDirs) {
789
- if (!classesSubDirs.contains(subDir)) {
790
- classesSubDirs.add(subDir)
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();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nativescript/android",
3
3
  "description": "NativeScript Runtime for Android",
4
- "version": "8.4.0-alpha.5",
4
+ "version": "8.4.0-alpha.6",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/NativeScript/android-runtime.git"