android - Google Play APK upload failure with uses-permission maxSdkVersion -
we have app following manifest settings:
<uses-permission android:name="android.permission.get_accounts" android:maxsdkversion="15" /> <uses-sdk android:minsdkversion="14" android:targetsdkversion="20"/>
the get_accounts permission used required push notifications, no longer required since api 16 (at least our understanding), used maxsdkversion option this.
we've uploaded apps these settings awhile, , may 2015, today (7/23/2015) we're getting error developer console:
we use google play services, , have guess change culprit.
any advice?
the problem android:maxsdkversion
attribute not added <uses-permission>
element until api 19.
this means if set android:maxsdkversion
below 18 aren't going behavior desire- first version of android can interpret value 19.
Comments
Post a Comment