]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/AndroidManifest.xml
Add comments to the .xml files.
[PrivacyBrowserAndroid.git] / app / src / main / AndroidManifest.xml
index 3f66b340943d7de2f18aabd6088775d083418c98..fb445db0eff6810176bacee8c40e495bb5086676 100644 (file)
@@ -10,6 +10,9 @@
         android:icon="@mipmap/ic_launcher"
         android:label="@string/privacy_browser"
         android:theme="@style/AppTheme" >
+
+        // configChanges orientation and screenSize makes the app not reload when the orientation changes.
+        // windowSoftInputMode stateAlwaysHidden hides the keyboard when the app starts.
         <activity
             android:name=".Webview"
             android:configChanges="orientation|screenSize"
@@ -19,6 +22,8 @@
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
+
+            // android.intent.action.VIEW with the schemes enables processing of web intents.
             <intent-filter>
                 <action android:name="android.intent.action.VIEW" />
                 <category android:name="android.intent.category.BROWSABLE" />