1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.stoutner.privacybrowser" >
5 <uses-permission android:name="android.permission.INTERNET" />
8 android:allowBackup="false"
9 android:fullBackupContent="false"
10 android:icon="@mipmap/ic_launcher"
11 android:label="@string/privacy_browser"
12 android:theme="@style/AppTheme" >
14 <!-- configChanges orientation and screenSize makes the app not reload when the orientation changes. -->
15 <!-- windowSoftInputMode stateAlwaysHidden hides the keyboard when the app starts. -->
17 android:name=".Webview"
18 android:configChanges="orientation|screenSize"
19 android:label="@string/privacy_browser"
20 android:windowSoftInputMode="stateAlwaysHidden">
22 <action android:name="android.intent.action.MAIN" />
23 <category android:name="android.intent.category.LAUNCHER" />
26 <!-- android.intent.action.VIEW with the schemes enables processing of web intents. -->
28 <action android:name="android.intent.action.VIEW" />
29 <category android:name="android.intent.category.BROWSABLE" />
30 <category android:name="android.intent.category.DEFAULT" />
31 <data android:scheme="http" />
32 <data android:scheme="https" />