Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

My app disappeared from "tablet" google play but still available for phone

I have my app published for couple of months on Google play. People with phones and tablets are able to download it. Surprisingly, sometimes in the last 2 weeks, something with google play changes and my app is only available for phone (I can't find it when I search using a tablet).

Any idea if there is something changed or I need to implement? I don't specify any device screen size in my manifist file so it should be fine ,right?

Thanks a lot

EDIT. Below is the manifest file. The thing that this application was supporting tablet but all of the sudden it stopped

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.myApp"
    android:versionCode="5"
    android:versionName="3.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.SEND_SMS" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="com.android.vending.CHECK_LICENSE" />
    <uses-permission android:name="android.permission.VIBRATE" />

    ........
   ////Activities are here
..

</manifest>
like image 536
Snake Avatar asked Jan 13 '23 06:01

Snake


1 Answers

I found the solution I used the support screen tag and I explicitly set the xlarge screen to true. I contacted Google and they said it is a issue they are investigating.

like image 55
Snake Avatar answered May 06 '23 23:05

Snake