This question is locked. New answers and comments are not allowed.
I uploaded my APK to the app store and under Optimization Tips it said I should design my app for tablets, which I thought it already was. It says I need to set the target an min Android versions as well as supporting tablet screen sizes. I'm attaching my manifest.xml because I thought I already had these included.
Also it says I need to include custom drawables and assets for common tablet screen densities but I don't see the option in Icenium to include assets for tablets.
Thanks!
Also it says I need to include custom drawables and assets for common tablet screen densities but I don't see the option in Icenium to include assets for tablets.
<?xml version="1.0" encoding="utf-8"?><manifest android:versionCode="$AndroidVersionCode$" android:versionName="$BundleVersion$" package="$AppIdentifier$" android:windowSoftInputMode="adjustPan" android:hardwareAccelerated="$AndroidHardwareAcceleration$" xmlns:android="http://schemas.android.com/apk/res/android" > <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:xlargeScreens="true" android:resizeable="true" android:anyDensity="true" /> <application android:label="My App" android:icon="@drawable/icon" android:hardwareAccelerated="$AndroidHardwareAcceleration$"> <activity android:label="My App" android:name=".TelerikCallbackActivity" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:launchMode="standard" android:theme="@android:style/Theme.Black.NoTitleBar" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> <uses-sdk android:minSdkVersion="11" android:targetSdkVersion="14" /></manifest>Thanks!