Reputation: 844
i want to submit my android application to google-play.
my mainfest file is:
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17"/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"/>
i am using the same layout folder for all screens.i didn't kept any seperate folders for large and xlarge screens like layout-xlarge and layout-large.how can i write android mainfest file to support multiple screens. because my xlarge screen is not rendering properly with this mainfest file.
This is my first android app so kindly tell me the way of writing mainfest file to support all screen-sizes and all android os versions.
Upvotes: 0
Views: 156
Reputation: 2751
try this one
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.exampl.eee"
android:versionCode="1"
android:versionName="1.0" >
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true" />
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8" />
Upvotes: 3
Reputation: 2318
try out this:
<supports-screens android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
Upvotes: 0