I have devices MOTOROLA DROID ULTRA which does not support External Storage.
My manifest file contains permissions-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Due to these permissions, I am unable to see my application on device MOTOROLA DROID ULTRA.
I know how to set permissions to be not required for other features that I am using like-
For camera,
<uses-permission android:name="android.permission.CAMERA" />
I used,
<uses-feature
android:name="android.hardware.camera"
android:required="false" />
<uses-feature
android:name="android.hardware.camera.autofocus"
android:required="false" />
How about external storage ?