Skip to content

Commit ed5a139

Browse files
committed
Update everything to NS 8.2 & Angular 14
1 parent 5280dfc commit ed5a139

File tree

14 files changed

+15163
-9160
lines changed

14 files changed

+15163
-9160
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
- name: Setup NativeScript CLI
4848
run: |
49-
echo no | npm i -g nativescript@^8.0.0
49+
echo no | npm i -g nativescript@^8.2.0
5050
ns usage-reporting disable
5151
ns error-reporting disable
5252

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
- Updated okhttp dependency requirement to 4.10.+
99
- Fix demo websocket
10+
- Build for NS 8.2 & Angular 14
1011

1112
## 3.0.2
1213

demo-angular/App_Resources/Android/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
android:name="com.tns.NativeScriptActivity"
2727
android:label="@string/title_activity_kimera"
2828
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode"
29-
android:theme="@style/LaunchScreenTheme">
29+
android:theme="@style/LaunchScreenTheme"
30+
android:exported="true">
3031

3132
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
3233

demo-angular/package-lock.json

Lines changed: 10277 additions & 4919 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

demo-angular/package.json

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -40,29 +40,30 @@
4040
"url": "https://github.com/NativeScript/NativeScript/issues"
4141
},
4242
"dependencies": {
43-
"@angular/animations": "~12.0.0",
44-
"@angular/common": "~12.0.0",
45-
"@angular/compiler": "~12.0.0",
46-
"@angular/core": "~12.0.0",
47-
"@angular/forms": "~12.0.0",
48-
"@angular/platform-browser": "~12.0.0",
49-
"@angular/platform-browser-dynamic": "~12.0.0",
50-
"@angular/router": "~12.0.0",
51-
"@nativescript/angular": "~12.0.0",
52-
"@nativescript/core": "~8.0.0",
53-
"@nativescript/theme": "~3.0.1",
54-
"rxjs": "^6.6.0",
55-
"zone.js": "~0.11.4",
43+
"@angular/animations": "~14.0.0",
44+
"@angular/common": "~14.0.0",
45+
"@angular/compiler": "~14.0.0",
46+
"@angular/core": "~14.0.0",
47+
"@angular/forms": "~14.0.0",
48+
"@angular/platform-browser": "~14.0.0",
49+
"@angular/platform-browser-dynamic": "~14.0.0",
50+
"@angular/router": "~14.0.0",
51+
"@nativescript/angular": "^14.0.0",
52+
"@nativescript/core": "~8.2.0",
53+
"@nativescript/theme": "~3.0.2",
54+
"rxjs": "~7.5.0",
55+
"zone.js": "~0.11.5",
5656
"@klippa/nativescript-http": "file:../src"
5757
},
5858
"devDependencies": {
59-
"@nativescript/android": "8.0.0",
60-
"@nativescript/ios": "8.0.0",
61-
"@angular/compiler-cli": "~12.0.0",
62-
"@nativescript/types": "~8.0.0",
63-
"@nativescript/webpack": "beta",
64-
"@ngtools/webpack": "~12.0.0",
65-
"typescript": "~4.2.0",
59+
"@nativescript/android": "~8.2.0",
60+
"@nativescript/ios": "~8.2.0",
61+
"@angular-devkit/build-angular": "~14.0.0",
62+
"@angular/compiler-cli": "~14.0.0",
63+
"@nativescript/types": "~8.2.0",
64+
"@nativescript/webpack": "~5.0.6",
65+
"@ngtools/webpack": "~14.0.0",
66+
"typescript": "~4.7.0",
6667
"tslint": "6.1.3"
6768
},
6869
"private": "true",

demo-vue/App_Resources/Android/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
android:name="com.tns.NativeScriptActivity"
2727
android:label="@string/title_activity_kimera"
2828
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode"
29-
android:theme="@style/LaunchScreenTheme">
29+
android:theme="@style/LaunchScreenTheme"
30+
android:exported="true">
3031

3132
<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />
3233

0 commit comments

Comments
 (0)