diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-02-05 09:49:06 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-02-05 09:49:06 +0100 |
commit | 1a65622af5d97bfcf56c84e90e40bfd0b214e43b (patch) | |
tree | d4ba0b20e995fd9cfc5030c3d889c2a963b10b73 /AndroidManifest.xml | |
parent | 84ccab8d6510835316b0a89085dae31801bd50dc (diff) |
Fix Locale related errors/bugs. Update … to unicode replacement. Fix the speed display.
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 4d0d183f..c37199ec 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -30,7 +30,7 @@ <uses-sdk android:minSdkVersion="15" - android:targetSdkVersion="15" /> + android:targetSdkVersion="17" /> <permission android:name="de.blinkt.openvpn.REMOTE_API" @@ -42,7 +42,8 @@ <application android:allowBackup="true" android:icon="@drawable/icon" - android:label="@string/app" > + android:label="@string/app" + android:supportsRtl="true" > <activity android:name=".AboutFragment" /> <activity android:name=".VPNPreferences" @@ -110,7 +111,8 @@ <data android:mimeType="application/ovpn" /> </intent-filter> <intent-filter android:label="@string/import_config" > - <!-- http://stackoverflow.com/questions/7030832/associating-certain-file-extension-to-my-android-application/7102838#7102838 --> + + <!-- http://stackoverflow.com/questions/7030832/associating-certain-file-extension-to-my-android-application/7102838#7102838 --> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> |