I am developing an application compatible with versions 2.3.3 and higher
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10" android:maxSdkVersion="17"/> <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:xlargeScreens="true" /> <compatible-screens> <screen android:screenDensity="mdpi" android:screenSize="normal" /> <screen android:screenDensity="hdpi" android:screenSize="large" /> <screen android:screenDensity="xhdpi" android:screenSize="xlarge" /> </compatible-screens>
and during my development time he worked on my 2.3.6 Samsung galactic device.
However, after placing my application in the Play store, it shows that it is incompatible with my device. Why is this?
source share