Get rid of unnecessary implicit permissions
Targeting an application at Cupcake triggers compatibility behaviours: 1) The permissions WRITE_EXTERNAL_STORAGE and READ_PHONE_STATE are automatically requested. 2) Support for different screen sizes and densities is disabled. We don't want the extra permissions, but we do need the old resolution compatibility mode to avoid UI breakage (for now), so I'm increasing the target version and explicitly disabling the new screen support.
This commit is contained in:
parent
4ed1c3d622
commit
17d6916e95
@ -2,7 +2,9 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.fdroid.fdroid" android:versionCode="12"
|
||||
android:versionName="0.21" android:installLocation="auto">
|
||||
<uses-sdk android:minSdkVersion="3" />
|
||||
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
|
||||
<supports-screens android:resizeable="false"
|
||||
android:anyDensity="false" />
|
||||
<application android:name="FDroidApp" android:label="@string/app_name"
|
||||
android:icon="@drawable/icon">
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user