Hello friends, Google play store my app is not lis...
# android
s
Hello friends, Google play store my app is not listed in Samsung Galaxy S20 Plus Ultra mobile. That mobile screen resolution is 3200x1440 and the Dpi value is 525. But Samsung Galaxy S10 it's working fine. here is the code i added in manifest file. this not supported for an Tablet devices.
Copy code
<compatible-screens>
    <screen android:screenDensity="ldpi" android:screenSize="small" />
    <screen android:screenDensity="mdpi" android:screenSize="small" />
    <screen android:screenDensity="hdpi" android:screenSize="small" />
    <screen android:screenDensity="xhdpi" android:screenSize="small" />
    <screen android:screenDensity="420" android:screenSize="small" />
    <screen android:screenDensity="480" android:screenSize="small" />
    <screen android:screenDensity="560" android:screenSize="small" />
    <screen android:screenDensity="640" android:screenSize="small" />
    <!--Normal-->
    <screen android:screenDensity="ldpi" android:screenSize="normal" />
    <screen android:screenDensity="mdpi" android:screenSize="normal" />
    <screen android:screenDensity="hdpi" android:screenSize="normal" />
    <screen android:screenDensity="xhdpi" android:screenSize="normal" />
    <screen android:screenDensity="420" android:screenSize="normal" />
    <screen android:screenDensity="480" android:screenSize="normal" />
    <screen android:screenDensity="560" android:screenSize="normal" />
    <screen android:screenDensity="640" android:screenSize="normal" />
    <!--Large-->
    <screen android:screenDensity="ldpi" android:screenSize="large" />
    <screen android:screenDensity="mdpi" android:screenSize="large" />
    <screen android:screenDensity="hdpi" android:screenSize="large" />
    <screen android:screenDensity="xhdpi" android:screenSize="large" />
    <screen android:screenDensity="420" android:screenSize="large" />
    <screen android:screenDensity="480" android:screenSize="large" />
    <screen android:screenDensity="560" android:screenSize="large" />
    <screen android:screenDensity="640" android:screenSize="large" />
</compatible-screens>
Does anyone help me? with what I did wrong?
😶 5
u
Why you added the screen size and density in manifest Are you targeting selected devices only that have given screen specs ? If not then remove this list and then it will available for all the devices whose SDK is greater than equal to the min SDK of your app
🙌 1
s
@Umar Ata Thank you for the reply. Yes Umar, I am targeting 7 and above android OS. Only On mobile devices not for tablets.
k
Unless you have a very specific reason for these screen sizes, I would remove them. You shouldn't need to use them
🙌 1
☝️ 1
s
I removed the screen size. Now it's working fine. Thank you for your reply @Umar Ata @kevindmoore