Skip to content

Commit 5da1699

Browse files
authored
fix(android): updated android manifest in angular demo (#9)
1 parent 30006df commit 5da1699

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,17 @@
2020
android:allowBackup="true"
2121
android:icon="@mipmap/ic_launcher"
2222
android:label="@string/app_name"
23-
android:theme="@style/AppTheme">
23+
android:theme="@style/AppTheme"
24+
android:hardwareAccelerated="true">
2425

2526
<activity
2627
android:name="com.tns.NativeScriptActivity"
2728
android:label="@string/title_activity_kimera"
2829
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">
3034

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

0 commit comments

Comments
 (0)