I want to upload my app only for mobile phones for that i added the following code inside my manifest `
<!-- all normal size screens -->
<screen
android:screenDensity="mdpi"
android:screenSize="normal" />
<screen
android:screenDensity="hdpi"
android:screenSize="normal" />
<screen
android:screenDensity="xhdpi"
android:screenSize="normal" />
<screen
android:screenDensity="xxhdpi"
android:screenSize="normal" />
<screen
android:screenDensity="xxxhdpi"
android:screenSize="normal" />
</compatible-screens>`
But few devices like nexus5x, Nexus6 and Nexus6p are not supported for my app when i uploaded my app at Google play store.Can some one tell me what did i wrong ? Thanks.