uses-feature overruling uses-permission?

My app does read SMS and react on incoming calls, but I still want tablet users to be able to download it from Android Market because it does a whole lot more than that.

So, if my app requests permissions for reading the phone's state and SMS, but I do tell the Android Market that my app doesn't use telephony APIs, what would the Android Market do then?

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

<uses-feature
    android:required="false"
    android:name="android.hardware.telephony" />

Filtered for WIFI-only tablets or not filtered, that is the question.

Any experiences?

Have a great day Tom

14
задан TomTasche 11 April 2011 в 15:44
поделиться