@nativescript/android 8.8.0-alpha.5 → 8.8.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.
@@ -963,12 +963,12 @@ tasks.configureEach({ DefaultTask currentTask ->
963
963
  }
964
964
  if (currentTask =~ /compile.+JavaWithJavac/) {
965
965
  currentTask.dependsOn(runSbg)
966
- currentTask.finalizedBy(buildMetadata)
966
+ runSbg.finalizedBy(buildMetadata)
967
967
  }
968
968
 
969
969
  if (currentTask =~ /compile.+Kotlin.+/) {
970
970
  currentTask.dependsOn(runSbg)
971
- currentTask.finalizedBy(buildMetadata)
971
+ runSbg.finalizedBy(buildMetadata)
972
972
  }
973
973
 
974
974
  if (currentTask =~ /merge.*Assets/) {
@@ -1141,8 +1141,13 @@ tasks.configureEach({ DefaultTask currentTask ->
1141
1141
  currentTask.finalizedBy(buildMetadata)
1142
1142
  }
1143
1143
 
1144
+ if (currentTask =~ /desugar.*Dependencies/) {
1145
+ currentTask.finalizedBy(buildMetadata)
1146
+ }
1144
1147
 
1145
-
1148
+ if (currentTask =~ /merge.*JniLibFolders/) {
1149
+ currentTask.finalizedBy(buildMetadata)
1150
+ }
1146
1151
 
1147
1152
  })
1148
1153
 
@@ -39,7 +39,7 @@ ns_default_google_java_format_version = 1.6
39
39
  ns_default_gson_version = 2.10.1
40
40
  ns_default_json_version = 20180813
41
41
  ns_default_junit_version = 4.13.2
42
- ns_default_kotlin_version = 2.0.0-RC1
43
- ns_default_kotlinx_metadata_jvm_version = 2.0.0-RC1
42
+ ns_default_kotlin_version = 2.0.0-RC2
43
+ ns_default_kotlinx_metadata_jvm_version = 2.0.0-RC2
44
44
  ns_default_mockito_core_version = 3.0.0
45
45
  ns_default_spotbugs_version = 3.1.12
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nativescript/android",
3
3
  "description": "NativeScript for Android using v8",
4
- "version": "8.8.0-alpha.5",
4
+ "version": "8.8.0-alpha.6",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/NativeScript/android.git"
@@ -18,7 +18,7 @@
18
18
  "minSdk": "17",
19
19
  "compileSdk": "34",
20
20
  "buildTools": "34.0.0",
21
- "kotlin": "2.0.0-RC1"
21
+ "kotlin": "2.0.0-RC2"
22
22
  },
23
23
  "// this gradle key is here for backwards compatibility - we'll phase it out slowly...": "",
24
24
  "gradle": {