Reputation: 3258
Is there any way to apply filters in the Android manifest to prevent Samsung Galaxy Camera or similar Android Camera devices from accessing a particular app from the play store.
using uses - feature android:name=”android.hardware.telephony” android:required=”true” might work, but it would also filter tablets with no calling feature,
Any information would be helpful.
Upvotes: 0
Views: 218
Reputation: 8579
You can exclude individual devices through Google Play using 'excluded devices' section within the 'APK' tab in the developer console:
For more info, check out the 'Capabilities Targeting' section of this page.
Upvotes: 2