@nativescript/android 8.5.2 → 8.5.4-next.2023-09-26-6307252276
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 +7 -5
- 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/build-tools/android-metadata-generator.jar +0 -0
- package/framework/build-tools/jsparser/js_parser.js +1 -1
- package/framework/build-tools/static-binding-generator.jar +0 -0
- package/framework/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/framework/gradle/wrapper/gradle-wrapper.properties +1 -2
- package/framework/gradle.properties +1 -2
- package/framework/gradlew +177 -109
- package/framework/gradlew.bat +31 -24
- package/package.json +1 -1
- package/framework/build-tools/dts-generator.jar +0 -0
|
@@ -190,6 +190,8 @@ def setAppIdentifier = { ->
|
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
android {
|
|
193
|
+
namespace "com.tns.testapplication"
|
|
194
|
+
|
|
193
195
|
applyBeforePluginGradleConfiguration()
|
|
194
196
|
|
|
195
197
|
if (enableKotlin) {
|
|
@@ -499,10 +501,10 @@ task runSbg(type: BuildToolTask) {
|
|
|
499
501
|
inputs.dir(extractedDependenciesDir)
|
|
500
502
|
|
|
501
503
|
workingDir "$BUILD_TOOLS_PATH"
|
|
502
|
-
|
|
504
|
+
mainClass = "-jar"
|
|
503
505
|
|
|
504
506
|
def paramz = new ArrayList<String>()
|
|
505
|
-
paramz.add("static-binding-generator.jar")
|
|
507
|
+
paramz.add("static-binding-generator/build/libs/static-binding-generator.jar")
|
|
506
508
|
|
|
507
509
|
if (failOnCompilationWarningsEnabled()) {
|
|
508
510
|
paramz.add("-show-deprecation-warnings")
|
|
@@ -767,7 +769,7 @@ task buildMetadata(type: BuildToolTask) {
|
|
|
767
769
|
outputs.files("$METADATA_OUT_PATH/treeNodeStream.dat", "$METADATA_OUT_PATH/treeStringsStream.dat", "$METADATA_OUT_PATH/treeValueStream.dat")
|
|
768
770
|
|
|
769
771
|
workingDir "$BUILD_TOOLS_PATH"
|
|
770
|
-
|
|
772
|
+
mainClass = "-jar"
|
|
771
773
|
|
|
772
774
|
doFirst {
|
|
773
775
|
// get compiled classes to pass to metadata generator
|
|
@@ -839,7 +841,7 @@ task buildMetadata(type: BuildToolTask) {
|
|
|
839
841
|
setOutputs outLogger
|
|
840
842
|
|
|
841
843
|
def paramz = new ArrayList<String>()
|
|
842
|
-
paramz.add("android-metadata-generator.jar")
|
|
844
|
+
paramz.add("android-metadata-generator/build/libs/android-metadata-generator.jar")
|
|
843
845
|
|
|
844
846
|
if(enableAnalytics){
|
|
845
847
|
paramz.add("analyticsFilePath=$analyticsFilePath")
|
|
@@ -862,7 +864,7 @@ task generateTypescriptDefinitions(type: BuildToolTask) {
|
|
|
862
864
|
def includeDirs = ["com.android.support", "/platforms/" + android.compileSdkVersion]
|
|
863
865
|
|
|
864
866
|
workingDir "$BUILD_TOOLS_PATH"
|
|
865
|
-
|
|
867
|
+
mainClass = "-jar"
|
|
866
868
|
|
|
867
869
|
doFirst {
|
|
868
870
|
delete "$TYPINGS_PATH"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|