@nativescript/template-blank 9.0.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 35
8
- buildToolsVersion "35"
7
+ compileSdkVersion 36
8
+ buildToolsVersion "36"
9
9
  // ndkVersion ""
10
10
 
11
11
  defaultConfig {
12
12
  minSdkVersion 24
13
- targetSdkVersion 35
13
+ targetSdkVersion 36
14
14
 
15
15
  // Version Information
16
16
  versionCode 1
@@ -15,6 +15,7 @@
15
15
 
16
16
  <application
17
17
  android:name="com.tns.NativeScriptApplication"
18
+ android:networkSecurityConfig="@xml/network_security"
18
19
  android:allowBackup="true"
19
20
  android:icon="@mipmap/ic_launcher"
20
21
  android:label="@string/app_name"
@@ -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
+
@@ -15,11 +15,11 @@
15
15
  <key>CFBundlePackageType</key>
16
16
  <string>APPL</string>
17
17
  <key>CFBundleShortVersionString</key>
18
- <string>1.0</string>
18
+ <string>1.0.0</string>
19
19
  <key>CFBundleSignature</key>
20
20
  <string>????</string>
21
21
  <key>CFBundleVersion</key>
22
- <string>1.0</string>
22
+ <string>1.0.0</string>
23
23
  <key>LSRequiresIPhoneOS</key>
24
24
  <true/>
25
25
  <key>UILaunchStoryboardName</key>
@@ -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
@@ -3,7 +3,7 @@
3
3
  "main": "app/app.js",
4
4
  "displayName": "Blank",
5
5
  "templateType": "App template",
6
- "version": "9.0.0",
6
+ "version": "9.1.1",
7
7
  "description": "Blank template for Vanilla NativeScript apps using JavaScript",
8
8
  "author": "NativeScript Team <oss@nativescript.org>",
9
9
  "license": "Apache-2.0",
@@ -38,7 +38,7 @@
38
38
  "url": "https://github.com/NativeScript/NativeScript/issues"
39
39
  },
40
40
  "dependencies": {
41
- "@nativescript/core": "~9.0.0",
41
+ "@nativescript/core": "~9.1.0",
42
42
  "@nativescript/theme": "^3.1.0"
43
43
  },
44
44
  "devDependencies": {