@nativescript/template-tab-navigation-vue 8.0.3 → 8.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.
@@ -20,13 +20,17 @@
20
20
  android:allowBackup="true"
21
21
  android:icon="@mipmap/ic_launcher"
22
22
  android:label="@string/app_name"
23
- android:theme="@style/AppTheme">
23
+ android:theme="@style/AppTheme"
24
+ android:hardwareAccelerated="true">
24
25
 
25
26
  <activity
26
27
  android:name="com.tns.NativeScriptActivity"
27
28
  android:label="@string/title_activity_kimera"
28
29
  android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode"
29
- android:theme="@style/LaunchScreenTheme">
30
+ android:theme="@style/LaunchScreenTheme"
31
+ android:hardwareAccelerated="true"
32
+ android:launchMode="singleTask"
33
+ android:exported="true">
30
34
 
31
35
  <meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
32
36
 
@@ -30,7 +30,6 @@ module.exports = function (hookArgs) {
30
30
  console.log(error)
31
31
  }
32
32
 
33
-
34
33
  function deleteFolderSync(folderPath) {
35
34
  if (fs.statSync(folderPath).isDirectory()) {
36
35
  fs.readdirSync(folderPath).forEach((file) => {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@nativescript/template-tab-navigation-vue",
3
3
  "main": "app/app.js",
4
4
  "displayName": "Tabs",
5
- "version": "8.0.3",
5
+ "version": "8.1.1",
6
6
  "description": "Tabbed interface template using Vue",
7
7
  "author": "NativeScript Team <oss@nativescript.org>",
8
8
  "license": "Apache-2.0",
@@ -40,12 +40,12 @@
40
40
  "category-general"
41
41
  ],
42
42
  "dependencies": {
43
- "@nativescript/core": "~8.0.0",
43
+ "@nativescript/core": "~8.1.1",
44
44
  "@nativescript/theme": "~3.0.1",
45
45
  "nativescript-vue": "~2.9.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@nativescript/webpack": "5.0.0-beta.4",
48
+ "@nativescript/webpack": "~5.0.0",
49
49
  "nativescript-vue-template-compiler": "~2.9.0"
50
50
  }
51
51
  }