@nativescript/android 8.2.0-rc.0 → 8.2.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/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/gradle.properties +3 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ The NativeScript Android Runtime architecture can be summarized in the following
|
|
|
37
37
|
|
|
38
38
|

|
|
39
39
|
|
|
40
|
-
For more details on how it works, read the [documentation](https://docs.nativescript.org/
|
|
40
|
+
For more details on how it works, read the [documentation](https://v7.docs.nativescript.org/core-concepts/android-runtime/overview).
|
|
41
41
|
|
|
42
42
|
## Build Prerequisites
|
|
43
43
|
Following are the minimal prerequisites to build the runtime package.
|
|
Binary file
|
|
Binary file
|
|
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.2",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/NativeScript/android-runtime.git"
|
|
@@ -20,8 +20,9 @@
|
|
|
20
20
|
"buildTools": "31.0.0",
|
|
21
21
|
"kotlin": "1.6.0"
|
|
22
22
|
},
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
"
|
|
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"
|
|
26
27
|
}
|
|
27
28
|
}
|