]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/AndroidManifest.xml
Refine progressBar height. Create onReceivedError toast.
[PrivacyBrowserAndroid.git] / app / src / main / AndroidManifest.xml
index b07addeb9b1a89a6659c32c60e2fac2bc3906f4a..1f558d1da41399a1ca148cc4ae8264fb38d96bad 100644 (file)
@@ -3,6 +3,9 @@
     package="com.stoutner.privacybrowser" >
 
     <uses-permission android:name="android.permission.INTERNET" />
+    <!-- READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE are required to download files. -->
+    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
 
     <application
         android:allowBackup="false"
 
         <!-- configChanges orientation and screenSize makes the app not reload when the orientation changes. -->
         <!-- windowSoftInputMode stateAlwaysHidden hides the keyboard when the app starts. -->
-        <!-- Setting the label as null removes it from the action bar. -->
         <activity
             android:name=".Webview"
             android:configChanges="orientation|screenSize"
-            android:label=""
+            android:label="@string/privacy_browser"
             android:windowSoftInputMode="stateAlwaysHidden">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />