X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2FAndroidManifest.xml;h=94c0a980b79ac1606800d03af940ad55c5f7c928;hp=a0550338affa1f9e669825e9b8df9acf35e6db0f;hb=f68d82ddcd76aafdba7f215c6a731b19beb35711;hpb=6eb99f0c383d678bc62208ddad0b1bfb2ee6e352 diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index a0550338..94c0a980 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,7 +1,7 @@ - + + - + + + + + + + @@ -36,91 +46,223 @@ + android:fullBackupContent="false" + android:supportsRtl="true" + android:networkSecurityConfig="@xml/network_security_config" + tools:ignore="UnusedAttribute" > - + - + + + + + + + + + + + + + + android:screenOrientation="fullUser" + android:persistableMode="persistNever" + tools:ignore="UnusedAttribute" > - + + + + + + + + + + + + + + + + + + + + + + + `android:configChanges="keyboard|keyboardHidden"` makes the activity not reload when a bluetooth keyboard is activated/goes to sleep. + `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot. + `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. --> + android:parentActivityName=".activities.MainWebViewActivity" + android:configChanges="orientation|screenSize|keyboard|keyboardHidden" + android:screenOrientation="fullUser" + android:persistableMode="persistNever" + tools:ignore="UnusedAttribute" /> + `android:configChanges="keyboard|keyboardHidden"` makes the activity not reload when a bluetooth keyboard is activated/goes to sleep. + `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot. + `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. --> + android:parentActivityName=".activities.BookmarksActivity" + android:configChanges="orientation|screenSize|keyboard|keyboardHidden" + android:screenOrientation="fullUser" + android:persistableMode="persistNever" + tools:ignore="UnusedAttribute" /> + + + + + + + `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes. + `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot. + `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. --> + android:name=".activities.SettingsActivity" + android:label="@string/settings" + android:parentActivityName=".activities.MainWebViewActivity" + android:configChanges="orientation|screenSize|keyboard|keyboardHidden" + android:screenOrientation="fullUser" + android:persistableMode="persistNever" + tools:ignore="UnusedAttribute" /> + `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes. + `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot. + `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. --> + android:name=".activities.ImportExportActivity" + android:label="@string/import_export" + android:parentActivityName=".activities.MainWebViewActivity" + android:configChanges="orientation|screenSize|keyboard|keyboardHidden" + android:screenOrientation="fullUser" + android:persistableMode="persistNever" + tools:ignore="UnusedAttribute" /> + `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes. + `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot. + `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. --> + + + + + + + android:parentActivityName=".activities.MainWebViewActivity" + android:configChanges="orientation|screenSize|keyboard|keyboardHidden" + android:screenOrientation="fullUser" + android:persistableMode="persistNever" + tools:ignore="UnusedAttribute" /> + + + - + \ No newline at end of file