android - Cannot find my app in the Google Play on the tablet -
i developed , published app. build.gradle has
minsdkversion 11 targetsdkversion 22 compilesdkversion 22
and androidmanifest.xml has
<supports-screens android:normalscreens="true" android:largescreens="true" android:xlargescreens="true" android:anydensity="true" />
app uses features
now, have tablet asus nexus 7 android 5.1. can launch app on when debugging. in developer console says nexus 7 supported.
however, cannot find app in google play tablet. it's invisible tablet somehow.
most problem following line:
<uses-feature android:name="android.hardware.camera" />
the 2012 model has front camera , not rear camera. tells play store camera mandatory app run. won't show on devices front camera. see android camera: require frontal or rear camera
by default android:required:"true"
. means devices atleast rear camera able see this. can add android:required="false"
tag tell play store camera not mandatory show on app store.
Comments
Post a Comment