@nativescript/android 8.5.3 → 8.5.4-next.2023-09-27-6320552499
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 +11 -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) {
|
|
@@ -490,7 +492,9 @@ tasks.whenTaskAdded({ DefaultTask currentTask ->
|
|
|
490
492
|
|
|
491
493
|
task runSbg(type: BuildToolTask) {
|
|
492
494
|
dependsOn "collectAllJars"
|
|
495
|
+
def rootPath = "";
|
|
493
496
|
if (!findProject(':static-binding-generator').is(null)) {
|
|
497
|
+
rootPath = Paths.get(project(':static-binding-generator').projectDir.path, "build/libs").toString()
|
|
494
498
|
dependsOn ':static-binding-generator:jar'
|
|
495
499
|
}
|
|
496
500
|
|
|
@@ -499,10 +503,10 @@ task runSbg(type: BuildToolTask) {
|
|
|
499
503
|
inputs.dir(extractedDependenciesDir)
|
|
500
504
|
|
|
501
505
|
workingDir "$BUILD_TOOLS_PATH"
|
|
502
|
-
|
|
506
|
+
mainClass = "-jar"
|
|
503
507
|
|
|
504
508
|
def paramz = new ArrayList<String>()
|
|
505
|
-
paramz.add("static-binding-generator.jar")
|
|
509
|
+
paramz.add(Paths.get(rootPath,"static-binding-generator.jar"))
|
|
506
510
|
|
|
507
511
|
if (failOnCompilationWarningsEnabled()) {
|
|
508
512
|
paramz.add("-show-deprecation-warnings")
|
|
@@ -735,7 +739,9 @@ def listf(String directoryName, ArrayList<File> store) {
|
|
|
735
739
|
}
|
|
736
740
|
|
|
737
741
|
task buildMetadata(type: BuildToolTask) {
|
|
742
|
+
def rootPath = "";
|
|
738
743
|
if (!findProject(':android-metadata-generator').is(null)) {
|
|
744
|
+
rootPath = Paths.get(project(':android-metadata-generator').projectDir.path, "build/libs").toString()
|
|
739
745
|
dependsOn ':android-metadata-generator:jar'
|
|
740
746
|
}
|
|
741
747
|
|
|
@@ -767,7 +773,7 @@ task buildMetadata(type: BuildToolTask) {
|
|
|
767
773
|
outputs.files("$METADATA_OUT_PATH/treeNodeStream.dat", "$METADATA_OUT_PATH/treeStringsStream.dat", "$METADATA_OUT_PATH/treeValueStream.dat")
|
|
768
774
|
|
|
769
775
|
workingDir "$BUILD_TOOLS_PATH"
|
|
770
|
-
|
|
776
|
+
mainClass = "-jar"
|
|
771
777
|
|
|
772
778
|
doFirst {
|
|
773
779
|
// get compiled classes to pass to metadata generator
|
|
@@ -839,7 +845,7 @@ task buildMetadata(type: BuildToolTask) {
|
|
|
839
845
|
setOutputs outLogger
|
|
840
846
|
|
|
841
847
|
def paramz = new ArrayList<String>()
|
|
842
|
-
paramz.add("android-metadata-generator.jar")
|
|
848
|
+
paramz.add(Paths.get(rootPath, "android-metadata-generator.jar"))
|
|
843
849
|
|
|
844
850
|
if(enableAnalytics){
|
|
845
851
|
paramz.add("analyticsFilePath=$analyticsFilePath")
|
|
@@ -862,7 +868,7 @@ task generateTypescriptDefinitions(type: BuildToolTask) {
|
|
|
862
868
|
def includeDirs = ["com.android.support", "/platforms/" + android.compileSdkVersion]
|
|
863
869
|
|
|
864
870
|
workingDir "$BUILD_TOOLS_PATH"
|
|
865
|
-
|
|
871
|
+
mainClass = "-jar"
|
|
866
872
|
|
|
867
873
|
doFirst {
|
|
868
874
|
delete "$TYPINGS_PATH"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|