[Android] GooglePlay has a restriction on the maxSdk values for permissions

Jean-Baptiste Kempf git at videolan.org
Wed Jul 15 16:34:35 CEST 2015


vlc-ports/android | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Jul 15 16:33:59 2015 +0200| [4a7a76fbe9c618fdac26e6aec4ab73db514ad3aa] | committer: Jean-Baptiste Kempf

GooglePlay has a restriction on the maxSdk values for permissions

It refuses anything < 18...

> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=4a7a76fbe9c618fdac26e6aec4ab73db514ad3aa
---

 vlc-android/AndroidManifest.xml |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vlc-android/AndroidManifest.xml b/vlc-android/AndroidManifest.xml
index 68d4ee2..5a3238f 100644
--- a/vlc-android/AndroidManifest.xml
+++ b/vlc-android/AndroidManifest.xml
@@ -30,14 +30,14 @@
          See org.videolan.vlc.PhoneStateReceiver.java
          -->
     <uses-permission android:name="android.permission.READ_PHONE_STATE"
-       android:maxSdkVersion="10" />
+        android:maxSdkVersion="18" /> <!-- android:maxSdkVersion="10" -->
 
     <!-- STORAGE -->
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
 
     <!-- DEVELOPMENT_TOOLS signature -->
     <uses-permission android:name="android.permission.READ_LOGS"
-       android:maxSdkVersion="15" />
+        android:maxSdkVersion="18" /> <!-- android:maxSdkVersion="15" -->
 
     <!-- Internet -->
     <uses-permission android:name="android.permission.INTERNET" />



More information about the Android mailing list