google play - Publishing android app: This app is incompatible with all of your devices -
publishing , android app can see app in market watching text
this app incompatible of devices. here permissions , features of manifest
<uses-permission android:name="android.permission.access_network_state" /> <uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.use_credentials" /> <uses-permission android:name="android.permission.write_external_storage" /> <uses-permission android:name="android.permission.record_audio" /> <uses-permission android:name="android.permission.write_user_dictionary" /> <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> <uses-feature android:name="android.hardware.microphone" android:required="false" /> and gradle.build
minsdkversion 16 targetsdkversion 21 i dont understand why doesnt show supported phones.
thank you
do have supports-screens tag in androidmanifest.xml ? if not, try adding this: <supports-screens android:resizeable="true" android:smallscreens="true" android:normalscreens="true" android:largescreens="true" android:xlargescreens="true" android:anydensity="true" />
Comments
Post a Comment