@nativescript/android 8.8.0-alpha.3 → 8.8.0-alpha.4
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.
|
@@ -976,7 +976,7 @@ tasks.configureEach({ DefaultTask currentTask ->
|
|
|
976
976
|
}
|
|
977
977
|
// ensure buildMetadata is done before R8 to allow custom proguard from metadata
|
|
978
978
|
if (currentTask =~ /minify.*WithR8/) {
|
|
979
|
-
|
|
979
|
+
buildMetadata.finalizedBy(currentTask)
|
|
980
980
|
}
|
|
981
981
|
if (currentTask =~ /assemble.*Debug/ || currentTask =~ /assemble.*Release/) {
|
|
982
982
|
currentTask.finalizedBy("validateAppIdMatch")
|
|
@@ -1109,4 +1109,7 @@ tasks.configureEach({ DefaultTask currentTask ->
|
|
|
1109
1109
|
currentTask.mustRunAfter(buildMetadata)
|
|
1110
1110
|
}
|
|
1111
1111
|
|
|
1112
|
+
if (currentTask =~ /check.*DuplicateClasses/) {
|
|
1113
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1114
|
+
}
|
|
1112
1115
|
})
|
package/package.json
CHANGED