@nativescript/android 8.8.0-alpha.1 → 8.8.0-alpha.2
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 +10 -18
- package/package.json +1 -1
|
@@ -1005,19 +1005,15 @@ tasks.configureEach({ DefaultTask currentTask ->
|
|
|
1005
1005
|
}
|
|
1006
1006
|
|
|
1007
1007
|
if (currentTask =~ /generate.+LintVitalReportModel/) {
|
|
1008
|
-
|
|
1008
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1009
1009
|
}
|
|
1010
1010
|
|
|
1011
1011
|
if (currentTask =~ /lintVitalAnalyze.+/) {
|
|
1012
|
-
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
if (currentTask =~ /extract.+NativeSymbolTables/) {
|
|
1016
|
-
buildMetadata.finalizedBy(currentTask)
|
|
1012
|
+
currentTask.mustRunAfter(buildMetadata)
|
|
1017
1013
|
}
|
|
1018
1014
|
|
|
1019
1015
|
if (currentTask =~ /merge.+GlobalSynthetics/) {
|
|
1020
|
-
|
|
1016
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1021
1017
|
}
|
|
1022
1018
|
|
|
1023
1019
|
if (currentTask =~ /optimize.+Resources/) {
|
|
@@ -1037,23 +1033,19 @@ tasks.configureEach({ DefaultTask currentTask ->
|
|
|
1037
1033
|
}
|
|
1038
1034
|
|
|
1039
1035
|
if (currentTask =~ /generate.*LintReportModel/) {
|
|
1040
|
-
buildMetadata.finalizedBy(currentTask)
|
|
1041
|
-
}
|
|
1042
|
-
|
|
1043
|
-
if (currentTask.name.contains(":runtime:configureCMakeRelWithDebInfo")) {
|
|
1044
1036
|
currentTask.finalizedBy(buildMetadata)
|
|
1045
1037
|
}
|
|
1046
1038
|
|
|
1047
1039
|
if (currentTask =~ /generate.*AndroidTestResValues/) {
|
|
1048
|
-
buildMetadata.
|
|
1040
|
+
buildMetadata.dependsOn(currentTask)
|
|
1049
1041
|
}
|
|
1050
1042
|
|
|
1051
1043
|
if (currentTask =~ /generate.*AndroidTestLintModel/) {
|
|
1052
|
-
|
|
1044
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1053
1045
|
}
|
|
1054
1046
|
|
|
1055
1047
|
if (currentTask =~ /generate.*UnitTestLintModel/) {
|
|
1056
|
-
|
|
1048
|
+
buildMetadata.mustRunAfter(currentTask)
|
|
1057
1049
|
}
|
|
1058
1050
|
|
|
1059
1051
|
if (currentTask =~ /generate.*UnitTestLintModel/) {
|
|
@@ -1077,12 +1069,12 @@ tasks.configureEach({ DefaultTask currentTask ->
|
|
|
1077
1069
|
currentTask.finalizedBy(buildMetadata)
|
|
1078
1070
|
}
|
|
1079
1071
|
|
|
1080
|
-
if (currentTask
|
|
1072
|
+
if (currentTask =~ /lintAnalyze.*/) {
|
|
1081
1073
|
currentTask.finalizedBy(buildMetadata)
|
|
1082
1074
|
}
|
|
1083
1075
|
|
|
1084
|
-
if (currentTask
|
|
1085
|
-
|
|
1076
|
+
if (currentTask =~ /lintAnalyze.*AndroidTest/) {
|
|
1077
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1086
1078
|
}
|
|
1087
1079
|
|
|
1088
1080
|
if (currentTask =~ /bundle.*Resources/) {
|
|
@@ -1090,7 +1082,7 @@ tasks.configureEach({ DefaultTask currentTask ->
|
|
|
1090
1082
|
}
|
|
1091
1083
|
|
|
1092
1084
|
if (currentTask =~ /compile.*ArtProfile/) {
|
|
1093
|
-
currentTask.
|
|
1085
|
+
currentTask.mustRunAfter(buildMetadata)
|
|
1094
1086
|
}
|
|
1095
1087
|
|
|
1096
1088
|
})
|
package/package.json
CHANGED