@nativescript/android 8.8.0-alpha.4 → 8.8.0-alpha.5
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 +48 -0
- 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/gradle.properties +2 -2
- package/package.json +1 -1
|
@@ -1112,4 +1112,52 @@ tasks.configureEach({ DefaultTask currentTask ->
|
|
|
1112
1112
|
if (currentTask =~ /check.*DuplicateClasses/) {
|
|
1113
1113
|
currentTask.finalizedBy(buildMetadata)
|
|
1114
1114
|
}
|
|
1115
|
+
|
|
1116
|
+
if (currentTask =~ /check.*AarMetadata/) {
|
|
1117
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
if (currentTask =~ /create.*CompatibleScreenManifests/) {
|
|
1121
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
if (currentTask =~ /process.*Manifest/) {
|
|
1125
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
if (currentTask =~ /generate.*ResValues/) {
|
|
1129
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
if (currentTask =~ /merge.*Resources/) {
|
|
1133
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
if (currentTask =~ /package.*Resources/) {
|
|
1137
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
if (currentTask =~ /process.*Resources/) {
|
|
1141
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
|
|
1115
1147
|
})
|
|
1148
|
+
|
|
1149
|
+
rootProject.subprojects.forEach {
|
|
1150
|
+
it.tasks.configureEach({ DefaultTask currentTask ->
|
|
1151
|
+
if (currentTask =~ /.+bundleLibCompileToJar.*/) {
|
|
1152
|
+
currentTask.finalizedBy(cleanupAllJars)
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
if (currentTask =~ /bundleLibRuntimeToDir.*/) {
|
|
1156
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
if (currentTask =~ /compile.*LibraryResources/) {
|
|
1160
|
+
currentTask.finalizedBy(buildMetadata)
|
|
1161
|
+
}
|
|
1162
|
+
})
|
|
1163
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -24,9 +24,9 @@ NS_DEFAULT_COMPILE_SDK_VERSION=34
|
|
|
24
24
|
NS_DEFAULT_MIN_SDK_VERSION=17
|
|
25
25
|
NS_DEFAULT_ANDROID_BUILD_TOOLS_VERSION=8.3.2
|
|
26
26
|
|
|
27
|
-
ns_default_androidx_appcompat_version = 1.
|
|
27
|
+
ns_default_androidx_appcompat_version = 1.5.1
|
|
28
28
|
ns_default_androidx_exifinterface_version = 1.3.7
|
|
29
|
-
ns_default_androidx_fragment_version = 1.
|
|
29
|
+
ns_default_androidx_fragment_version = 1.5.7
|
|
30
30
|
ns_default_androidx_material_version = 1.8.0
|
|
31
31
|
ns_default_androidx_multidex_version = 2.0.1
|
|
32
32
|
ns_default_androidx_transition_version = 1.4.1
|
package/package.json
CHANGED