@nativescript/template-blank-solid 9.1.0 → 9.1.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.
|
@@ -4,13 +4,13 @@ dependencies {
|
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
android {
|
|
7
|
-
compileSdkVersion
|
|
8
|
-
buildToolsVersion "
|
|
7
|
+
compileSdkVersion 36
|
|
8
|
+
buildToolsVersion "36"
|
|
9
9
|
// ndkVersion ""
|
|
10
10
|
|
|
11
11
|
defaultConfig {
|
|
12
12
|
minSdkVersion 24
|
|
13
|
-
targetSdkVersion
|
|
13
|
+
targetSdkVersion 36
|
|
14
14
|
|
|
15
15
|
// Version Information
|
|
16
16
|
versionCode 1
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<network-security-config>
|
|
3
|
+
<base-config cleartextTrafficPermitted="true">
|
|
4
|
+
<trust-anchors>
|
|
5
|
+
<certificates src="system" />
|
|
6
|
+
<certificates src="user" />
|
|
7
|
+
</trust-anchors>
|
|
8
|
+
</base-config>
|
|
9
|
+
<domain-config cleartextTrafficPermitted="true">
|
|
10
|
+
<domain includeSubdomains="true">localhost</domain>
|
|
11
|
+
<domain includeSubdomains="true">127.0.0.1</domain>
|
|
12
|
+
<domain includeSubdomains="true">10.0.2.2</domain>
|
|
13
|
+
</domain-config>
|
|
14
|
+
</network-security-config>
|
|
15
|
+
|
|
16
|
+
|
|
@@ -43,5 +43,12 @@
|
|
|
43
43
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
44
44
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
45
45
|
</array>
|
|
46
|
+
<key>UIApplicationSceneManifest</key>
|
|
47
|
+
<dict>
|
|
48
|
+
<key>UIApplicationPreferredDefaultSceneSessionRole</key>
|
|
49
|
+
<string>UIWindowSceneSessionRoleApplication</string>
|
|
50
|
+
<key>UIApplicationSupportsMultipleScenes</key>
|
|
51
|
+
<false/>
|
|
52
|
+
</dict>
|
|
46
53
|
</dict>
|
|
47
54
|
</plist>
|
package/package.json
CHANGED