@nativescript/android 8.4.0-dev.0 → 8.4.0-dev.1
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/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/app/src/main/java/com/tns/RuntimeHelper.java +5 -5
- package/framework/gradle.properties +1 -1
- package/package.json +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -162,7 +162,7 @@ public final class RuntimeHelper {
|
|
|
162
162
|
appDir, classLoader, dexDir, dexThumb, appConfig, isDebuggable);
|
|
163
163
|
|
|
164
164
|
runtime = Runtime.initializeRuntimeWithConfiguration(config);
|
|
165
|
-
|
|
165
|
+
if (isDebuggable) {
|
|
166
166
|
// try {
|
|
167
167
|
// v8Inspector = new AndroidJsV8Inspector(context.getFilesDir().getAbsolutePath(), context.getPackageName());
|
|
168
168
|
// v8Inspector.start();
|
|
@@ -198,10 +198,10 @@ public final class RuntimeHelper {
|
|
|
198
198
|
//
|
|
199
199
|
// // if app is in debuggable mode run livesync service
|
|
200
200
|
// // runtime needs to be initialized before the NativeScriptSyncService is enabled because it uses runtime.runScript(...)
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
201
|
+
initLiveSync(runtime, logger, context);
|
|
202
|
+
|
|
203
|
+
waitForLiveSync(context);
|
|
204
|
+
}
|
|
205
205
|
|
|
206
206
|
runtime.runScript(new File(appDir, "internal/ts_helpers.js"));
|
|
207
207
|
|
|
@@ -22,7 +22,7 @@ android.useAndroidX=true
|
|
|
22
22
|
# Default versions used throughout the gradle configurations
|
|
23
23
|
NS_DEFAULT_BUILD_TOOLS_VERSION=32.0.0
|
|
24
24
|
NS_DEFAULT_COMPILE_SDK_VERSION=32
|
|
25
|
-
NS_DEFAULT_MIN_SDK_VERSION=
|
|
25
|
+
NS_DEFAULT_MIN_SDK_VERSION=17
|
|
26
26
|
NS_DEFAULT_ANDROID_BUILD_TOOLS_VERSION=7.3.0
|
|
27
27
|
|
|
28
28
|
ns_default_androidx_appcompat_version = 1.5.1
|
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.4.0-dev.
|
|
4
|
+
"version": "8.4.0-dev.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/NativeScript/android-runtime.git"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"gradleAndroid": "7.3.0",
|
|
16
16
|
"ndk": "r21",
|
|
17
17
|
"ndkApiLevel": "22",
|
|
18
|
-
"minSdk": "
|
|
18
|
+
"minSdk": "17",
|
|
19
19
|
"compileSdk": "32",
|
|
20
20
|
"buildTools": "32.0.0",
|
|
21
21
|
"kotlin": "1.7.10"
|