문제

I m up loading my latest apk onto google play store with few new permissions

    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />

doing so have reduced the number of supported devices. How can I make it support the earlier devices as it did before?

도움이 되었습니까?

해결책

i think you can use <uses-feature> tag in your manifest file to tell google play that your app doesn't need the proper hardware for that if the device doesn't support that hardware:

<uses-feature android:name="android.hardware.wifi" android:required="false" />
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top