diff options
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 6677201f..70ff7769 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -23,10 +23,8 @@ <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> - <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> - - - + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> + <!-- <uses-permission android:name="com.android.vending.BILLING" /> --> <uses-sdk android:minSdkVersion="14" /> @@ -40,7 +38,7 @@ android:windowSoftInputMode="stateHidden" /> <activity android:name=".LogWindow" - android:label="OpenVPN Log" /> + android:label="@string/openvpn_log" /> <activity android:name=".FileSelect" /> <activity android:name=".MainActivity" > <intent-filter> @@ -58,6 +56,7 @@ <action android:name="android.net.VpnService" /> </intent-filter> </service> + <receiver android:name=".OnBootReceiver" > <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> @@ -67,7 +66,7 @@ <activity android:name=".ConfigConverter" android:label="Convert Config File" > - <intent-filter android:label="Import OpenVPN Config" > + <intent-filter android:label="@string/import_config" > <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> @@ -75,7 +74,7 @@ <data android:mimeType="application/x-openvpn-profile" /> </intent-filter> - <intent-filter android:label="Import OpenVPN Config" > + <intent-filter android:label="@string/import_config" > <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> @@ -83,7 +82,7 @@ <data android:mimeType="application/ovpn" /> </intent-filter> - <intent-filter android:label="Import OpenVPN Config" > + <intent-filter android:label="@string/import_config" > <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> @@ -116,4 +115,4 @@ </activity-alias> </application> -</manifest> +</manifest>
\ No newline at end of file |