comparison android/AndroidManifest.xml @ 2496:3bf2f08fdc45

Android: Remove ugly workaround for initialization issues. Solved by a change to AndroidManifest.xml to prevent recreation on configuration changes. Add some code to detect the changes.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 03 May 2021 07:15:11 +0000
parents a0c493abb872
children 4ae2b3b77f25
comparison
equal deleted inserted replaced
2495:5664c91d03fb 2496:3bf2f08fdc45
7 android:icon="@mipmap/ic_launcher" 7 android:icon="@mipmap/ic_launcher"
8 android:label="@string/app_name" 8 android:label="@string/app_name"
9 android:roundIcon="@mipmap/ic_launcher_round" 9 android:roundIcon="@mipmap/ic_launcher_round"
10 android:supportsRtl="true" 10 android:supportsRtl="true"
11 android:theme="@style/Theme.Dwtest"> 11 android:theme="@style/Theme.Dwtest">
12 <activity android:name=".DWindows"> 12 <activity android:name=".DWindows"
13 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden">
13 <intent-filter> 14 <intent-filter>
14 <action android:name="android.intent.action.MAIN" /> 15 <action android:name="android.intent.action.MAIN" />
15 16
16 <category android:name="android.intent.category.LAUNCHER" /> 17 <category android:name="android.intent.category.LAUNCHER" />
17 </intent-filter> 18 </intent-filter>