@nativescript/android 8.2.0 → 8.2.3
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/README.md +1 -1
- 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/dts-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.properties +3 -1
- package/package.json +7 -2
|
Binary file
|
|
@@ -25,7 +25,9 @@ NS_DEFAULT_COMPILE_SDK_VERSION=31
|
|
|
25
25
|
NS_DEFAULT_MIN_SDK_VERSION=17
|
|
26
26
|
NS_DEFAULT_ANDROID_BUILD_TOOLS_VERSION=7.1.2
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
# we're defaulting to 1.3.1 instead of 1.4.0+ due to an issue where a newer
|
|
29
|
+
# version pulls in API29+ apis and freezes the app on the Splash Screen.
|
|
30
|
+
ns_default_androidx_appcompat_version = 1.3.1
|
|
29
31
|
ns_default_androidx_exifinterface_version = 1.3.3
|
|
30
32
|
ns_default_androidx_fragment_version = 1.4.1
|
|
31
33
|
ns_default_androidx_material_version = 1.5.0
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nativescript/android",
|
|
3
3
|
"description": "NativeScript Runtime for Android",
|
|
4
|
-
"version": "8.2.
|
|
4
|
+
"version": "8.2.3",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/NativeScript/android-runtime.git"
|
|
@@ -14,10 +14,15 @@
|
|
|
14
14
|
"gradle": "7.4",
|
|
15
15
|
"gradleAndroid": "7.1.2",
|
|
16
16
|
"ndk": "r21",
|
|
17
|
-
"ndkApiLevel": "
|
|
17
|
+
"ndkApiLevel": "22",
|
|
18
18
|
"minSdk": "17",
|
|
19
19
|
"compileSdk": "31",
|
|
20
20
|
"buildTools": "31.0.0",
|
|
21
21
|
"kotlin": "1.6.0"
|
|
22
|
+
},
|
|
23
|
+
"// this gradle key is here for backwards compatibility - we'll phase it out slowly...": "",
|
|
24
|
+
"gradle": {
|
|
25
|
+
"version": "7.4",
|
|
26
|
+
"android": "7.1.2"
|
|
22
27
|
}
|
|
23
28
|
}
|