diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-12-26 04:58:57 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-12-26 04:58:57 +0100 |
commit | 8a94d6c21681896f60054c18e2495ef8c53e6f7c (patch) | |
tree | 42f3214fe619e402d8f02f2164097e4717d07c16 /AndroidManifest.xml | |
parent | fd7570835b7e7fdd335b55bc006791ecb402277b (diff) | |
parent | 58131bfbde80b433992ab2e7deabb0b63aac072e (diff) |
Return to the old icon, I do not like the new ones yet...
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index d1339ee0..b15156d6 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -17,8 +17,8 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="de.blinkt.openvpn" - android:versionCode="52" - android:versionName="0.5.25" > + android:versionCode="57" + android:versionName="0.5.29" > <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> @@ -28,9 +28,12 @@ <!-- <uses-permission android:name="com.android.vending.BILLING" /> --> - <uses-sdk android:minSdkVersion="14" /> + <uses-sdk + android:minSdkVersion="14" + android:targetSdkVersion="14" /> <application + android:allowBackup="true" android:icon="@drawable/icon" android:label="@string/app" > <activity android:name=".AboutFragment" /> @@ -40,6 +43,7 @@ <activity android:name=".LogWindow" android:label="@string/openvpn_log" /> + <activity android:name=".SendDumpActivity" /> <activity android:name=".FileSelect" /> <activity android:name=".MainActivity" > <intent-filter> @@ -114,6 +118,12 @@ <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity-alias> + + <provider + android:name=".FileProvider" + android:authorities="de.blinkt.openvpn.FileProvider" + android:exported="true" + android:grantUriPermissions="true" /> </application> -</manifest>
\ No newline at end of file +</manifest> |