Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

My app is not available for tablet device on Google play

Tags:

I published my app 2 days ago on Google Play. For some reasons i can only see it in my phone's Google Play. If i search it on my Samsung Galaxy Tab, it does not appear.

In manifest.xml i didnt wrote anything like:

 android:largeScreens="false"  

in addition, this tag is set "true" by default, as far as i know.

Can anybody tell me something about this issue?

On Web browser's Google play i see this info:

This app is compatible with some of your devices.

-Samsung GT-P7500 This item is not compatible with your device.

-Vodafone Samsung GT-I9000

-HTC HTC Sensation Z710e

= = = E D I T = = This is my manifest just as you asked:

I use phone calls and telephony manager too.. could this be the problem? I must make an other version only for tabs or what ?

Maybe android:largeScreens="false" this is default ?

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"     package="com.KeySoft.OpenGuide"     android:versionCode="2"     android:versionName="1.1" >    <uses-library android:name="com.google.android.maps" />      <uses-sdk android:minSdkVersion="10" />      <uses-permission android:name="android.permission.INTERNET" />     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>     <uses-permission android:name="android.permission.CALL_PHONE"/>     <uses-permission android:name="android.permission.READ_PHONE_STATE"/>     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>"     <uses-permission android:name="android.permission.ACCES_LOCATION_EXTRA_COMMANDS"/>     <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION"/>        <uses-permission android:name="android.permission.CONTROL_LOCATION_UPDATES"/>         <application        android:icon="@drawable/ic_launcher"        android:label="@string/app_name" >     <uses-library android:name="com.google.android.maps" />           <activity             android:name=".LoadingScreen"             android:theme="@android:style/Theme.NoTitleBar"             android:label="@string/app_name" >          <intent-filter>          <action android:name="android.intent.action.MAIN" />          <category android:name="android.intent.category.LAUNCHER" />          </intent-filter>          </activity>            <activity           android:name="Top20"          android:theme="@android:style/Theme.NoTitleBar">          </activity>           <activity           android:name="ShopActivity"          android:theme="@android:style/Theme.NoTitleBar">          </activity>           <activity           android:name="Highlighted"          android:theme="@android:style/Theme.NoTitleBar">          </activity>           <activity           android:name="Favourites"          android:theme="@android:style/Theme.NoTitleBar">          </activity>           <activity           android:name="Near"          android:theme="@android:style/Theme.NoTitleBar">          </activity>           <activity           android:configChanges="keyboardHidden"          android:windowSoftInputMode="stateHidden"          android:name="Search"          android:theme="@android:style/Theme.NoTitleBar">          </activity>       </application>  </manifest> 
like image 544
Adam Varhegyi Avatar asked May 04 '12 06:05

Adam Varhegyi


People also ask

Why isn't an app available for my device?

Insufficient Storage Space Apps can take up a surprising amount of storage space on your device. If your phone has a small amount of storage, the reason you can't install apps from the Google Play Store could be because you simply don't have room. This can even prevent you from installing app updates, in some cases.

How do I download an app that is not available for my device?

APKMirror is one of the most popular and easiest ways to install Android apps that are not available in your country. Similar to Play Store, it allows developers to upload their APK packages directly on its platforms.

Why is my app not showing on Google Play?

If you can't find your app on some Android devices, it's possible that those devices aren't supported or are excluded by your app. Learn how to review your app's device compatibility and excluded devices. Also, make sure that the Android devices you're using are supported for use with Google Play.


1 Answers

The value is true if the "android:largeScreens" not declare in manifest. Do you use any other features? For example, making a phone call.

<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission> <uses-feature android:name="android.hardware.telephony" android:required="false"></uses-feature> 

You may add this pair of statement to your manifest, it do not force the device support telephony. However, you may need to check whether the user can use that “calling” function in your activity, if they are using a device that do not support. For the other features that may be filter by Google Play, you may visit here: http://developer.android.com/guide/appendix/market-filters.html

like image 97
da15000 Avatar answered Sep 20 '22 00:09

da15000