Reputation: 292
I have developed an app with
minSdkVersion 11
targetSdkVersion 23
versionCode 2
versionName "1.1"
compileSdkVersion 23
buildToolsVersion "23.0.0"
and the app is installed on devices like micromax, motoe, motog, with different versions like 4.1, 4.2, 5.0, 6.0.
But when I tried with Asus phone with kitkat version, it shows This app is not compatible with your phone.
I don't understand what actually is going on.
Can anyone show me I am wrong?
Upvotes: 3
Views: 2651
Reputation: 5201
Which Asus phone is it?
Your AndroidManifest.xml might be demanding a certain piece of hardware that is not present on that particular phone like bluetooth, nfc, telephony, wifi, etc.
<uses-feature android:name="android.hardware.bluetooth" android:required="true" />
<uses-feature android:name="android.hardware.bluetooth_le" android:required="true" />
Upvotes: 3