cordova - Android app, tablet only on google play. How? -
i have made android application using phonegap designed use tablets. however, after uploading app google play, says available phones , cannot installed on tablets :/
how can make application available tablets?
this androidmanifest file:
<?xml version="1.0" encoding="utf-8"?> <!-- licensed apache software foundation (asf) under 1 or more contributor license agreements. see notice file distributed work additional information regarding copyright ownership. asf licenses file under apache license, version 2.0 (the "license"); may not use file except in compliance license. may obtain copy of license @ http://www.apache.org/licenses/license-2.0 unless required applicable law or agreed in writing, software distributed under license distributed on "as is" basis, without warranties or conditions of kind, either express or implied. see license specific language governing permissions , limitations under license. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:windowsoftinputmode="adjustpan" package="com.p4l.inhome" android:versionname="1.0" android:versioncode="1" android:hardwareaccelerated="true"> <supports-screens android:largescreens="true" android:normalscreens="true" android:smallscreens="true" android:xlargescreens="true" android:resizeable="true" android:anydensity="true" /> <uses-permission android:name="android.permission.camera" /> <uses-permission android:name="android.permission.vibrate" /> <uses-permission android:name="android.permission.access_coarse_location" /> <uses-permission android:name="android.permission.access_fine_location" /> <uses-permission android:name="android.permission.access_location_extra_commands" /> <uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.receive_sms" /> <uses-permission android:name="android.permission.record_audio" /> <uses-permission android:name="android.permission.record_video"/> <uses-permission android:name="android.permission.modify_audio_settings" /> <uses-permission android:name="android.permission.read_contacts" /> <uses-permission android:name="android.permission.write_contacts" /> <uses-permission android:name="android.permission.write_external_storage" /> <uses-permission android:name="android.permission.access_network_state" /> <uses-permission android:name="android.permission.get_accounts" /> <uses-permission android:name="android.permission.broadcast_sticky" /> <application android:icon="@drawable/icon" android:label="@string/app_name" android:hardwareaccelerated="true" android:debuggable="true"> <activity android:hardwareaccelerated="true" android:screenorientation="landscape" android:name="inhomefinal" android:label="pay4later inhome" android:theme="@android:style/theme.black.notitlebar" android:configchanges="orientation|keyboardhidden|keyboard|screensize|locale"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> </application> <uses-sdk android:minsdkversion="7" android:targetsdkversion="17"/> </manifest>
thanks
change in manifest :
<supports-screens android:largescreens="true" android:normalscreens="false" android:requiressmallestwidthdp="600" android:smallscreens="false" android:xlargescreens="true" /> <uses-sdk android:minsdkversion="11" android:targetsdkversion="14" />
this prevent small/mobile device install application. device large screen have privilege install application. play store automatically select devices cording these settings.
Comments
Post a Comment