Exclude Tablets from APK publishing

前端 未结 1 1304
死守一世寂寞
死守一世寂寞 2020-12-20 05:46

I need to limit the installation availability of my android app to only Phones (or devices that have SMS capability or SIM Card)

I know I can limit the devices by sc

相关标签:
1条回答
  • 2020-12-20 05:53

    If I can target phones and exclude tablets, i'm happy.

    Whether or not a device supports telephony has little to do with whether it is a "phone" or a "tablet".

    If you need telephony, add <uses-feature android:name="android.hardware.telephony" /> to your manifest. This is implied by holding the SEND_SMS permission, so if you have SEND_SMS, you will already be restricted to devices with telephony capability.

    0 讨论(0)
提交回复
热议问题