Skip to content

Commit 5deaee2

Browse files
committed
chore: update samples app to 6.0
1 parent b617447 commit 5deaee2

File tree

4 files changed

+267
-285
lines changed

4 files changed

+267
-285
lines changed

build/config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@ const genConfig = (name) => {
106106
'process.env.NS_VUE_VERSION': `process.env.NS_VUE_VERSION || '${NSVueVersion}'`
107107
}),
108108
flow(),
109-
buble(),
109+
buble({
110+
transforms: { asyncAwait: false }
111+
}),
110112
alias(aliases),
111113
resolve(),
112114
commonjs(),

samples/app/App_Resources/Android/src/main/AndroidManifest.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
<uses-permission android:name="android.permission.INTERNET" />
77
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
88
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
9-
<application android:name="com.tns.NativeScriptApplication" android:allowBackup="true" android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/AppTheme">
9+
<application android:name="com.tns.NativeScriptApplication" android:allowBackup="true"
10+
android:usesCleartextTraffic="true"
11+
android:icon="@drawable/icon"
12+
android:label="@string/app_name"
13+
android:theme="@style/AppTheme">
1014
<activity android:name="com.tns.NativeScriptActivity" android:label="@string/title_activity_kimera" android:configChanges="keyboardHidden|orientation|screenSize" android:theme="@style/LaunchScreenTheme">
1115
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
1216
<intent-filter>
@@ -16,4 +20,4 @@
1620
</activity>
1721
<activity android:name="com.tns.ErrorReportActivity" />
1822
</application>
19-
</manifest>
23+
</manifest>

samples/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,11 @@
2121
"dependencies": {
2222
"@vue/devtools": "5.1.0",
2323
"nativescript-pager": "9.5.4",
24+
"nativescript-socketio": "^3.3.1",
2425
"nativescript-theme-core": "1.0.6",
25-
"nativescript-ui-gauge": "5.0.0-androidx",
26-
"nativescript-ui-sidedrawer": "7.0.0-androidx-110619",
26+
"nativescript-toasty": "^2.0.1",
27+
"nativescript-ui-gauge": "5.0.0",
28+
"nativescript-ui-sidedrawer": "7.0.0",
2729
"nativescript-vue-devtools": "1.2.0",
2830
"tns-core-modules": "6.0.1",
2931
"vue-router": "3.0.6",
@@ -42,7 +44,7 @@
4244
"mocha-multi": "1.1.0",
4345
"mochawesome": "4.0.0",
4446
"nativescript-dev-appium": "^5.3.0",
45-
"nativescript-dev-webpack": "1.0.0-rc-2019-07-10-002255-01",
47+
"nativescript-dev-webpack": "1.0.1",
4648
"nativescript-vue-template-compiler": "file:../packages/nativescript-vue-template-compiler",
4749
"vue-loader": "15.7.0"
4850
}

0 commit comments

Comments
 (0)