android - App dont show in market for tablets -
i've done app , i've tried on tablet via usb. when uploaded market didnt show pad... :s guess problem in manifest...
here manifest:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.thorne.godnattsmamonster" android:versioncode="2" android:versionname="1.1" > <uses-sdk android:minsdkversion="8" android:targetsdkversion="19" /> <uses-permission android:name="android.permission.camera" android:maxsdkversion="19" /> <uses-permission android:name="android.permission.write_external_storage" android:maxsdkversion="19" /> <uses-permission android:name="android.permission.vibrate" android:maxsdkversion="19" /> <application android:allowbackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" > <activity android:name="com.thorne.godnattsmamonster.mainactivity" android:label="@string/app_name" android:screenorientation="sensorlandscape"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <activity android:name="com.thorne.godnattsmamonster.bookinterface" android:label="@string/title_activity_book_interface" android:screenorientation="sensorlandscape" > </activity> <activity android:name="com.thorne.godnattsmamonster.settingsactivity" android:label="@string/settings" android:screenorientation="sensorlandscape" > </activity> <activity android:name="com.thorne.godnattsmamonster.peekaboo" android:label="@string/title_activity_peekaboo" android:parentactivityname="com.thorne.godnattsmamonster.mainactivity" android:screenorientation="sensorlandscape"> <meta-data android:name="android.support.parent_activity" android:value="com.thorne.godnattsmamonster.mainactivity" /> </activity> </application> </manifest> what need add? br
android:name="android.permission.write_external_storage"
that's problem there. some/most tablets don't have external storage. either use internal storage (in case don't need permission), or try adding android:required="false" write_exteral_storage permission. either way though, going have go code writing external storage , change internal, or handle case tablet doesn't have external storage.
Comments
Post a Comment