Wednesday, 15 September 2010

Android App is not visible on Google Play store for tablets -



Android App is not visible on Google Play store for tablets -

can suggest me why app not visible tablets on google play store. using gcm, gmap, photographic camera , storing files on sdcard.

it not visible major tablets on google play store, sim , simless. know google play store mask app device not match manifest permissions believe there no permission not exist on major samsung devices.

please find below manifest.

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.app" android:versioncode="15" android:versionname="2.4.3" > <uses-sdk android:minsdkversion="11" android:targetsdkversion="19" /> <supports-screens android:largescreens="true" android:normalscreens="true" android:smallscreens="false" android:xlargescreens="true" /> <!-- google cloud messaging secion --> <permission android:name="com.example.app.permission.c2d_message" android:protectionlevel="signature" /> <uses-permission android:name="com.example.app.permission.c2d_message" /> <!-- app receives gcm messages. --> <uses-permission android:name="com.google.android.c2dm.permission.receive" /> <uses-permission android:name="com.google.android.providers.gsf.permission.read_gservices" /> <!-- gcm connects google services. --> <uses-permission android:name="android.permission.internet" /> <!-- gcm requires google account. --> <uses-permission android:name="android.permission.get_accounts" /> <!-- keeps processor sleeping when message received. --> <uses-permission android:name="android.permission.wake_lock" /> <!-- end google cloud messaging secion --> <permission android:name="com.example.app.permission.maps_receive" /> <uses-permission android:name="com.example.app.permission.maps_receive" /> <uses-permission android:name="android.permission.access_network_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.access_fine_location" /> <!-- required opengl es 2.0. maps v2 --> <uses-feature android:glesversion="0x00020000" /> <uses-permission android:name="android.permission.camera" /> <application android:allowbackup="false" android:allowclearuserdata="false" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:largeheap="true" android:theme="@style/apptheme" > <!-- google cloud messaging secion --> <receiver android:name="com.example.app.gcmbroadcastreceiver" android:permission="com.google.android.c2dm.permission.send" > <intent-filter> <action android:name="com.google.android.c2dm.intent.receive" /> <action android:name="com.google.android.c2dm.intent.registration" /> <category android:name="com.example.app" /> </intent-filter> </receiver> <service android:name="com.example.app.gcmregistrationservice" android:enabled="true" android:exported="false" /> <!-- end google cloud messaging section --> <activity android:name=".splashactivity" android:screenorientation="landscape" android:theme="@android:style/theme.black.notitlebar" android:windowsoftinputmode="adjustpan" > <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> </application>

if tablet android version below android:minsdkversion="11"

then google playstore .will not show app in tablet

android google-play android-manifest android-permissions

No comments:

Post a Comment