Closed GoogleCodeExporter closed 9 years ago
I think you should add theese lines in AmdroidManifest.xml file:
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>
<supports-screens
android:normalScreens="true"
android:largeScreens="true"
android:smallScreens="true">
</supports-screens>
Thank you
Original comment by diego.ma...@gmail.com
on 23 Nov 2010 at 1:41
Thank you, I just added your suggested changes.
Original comment by ldro...@gmail.com
on 2 Dec 2010 at 9:02
I have the same problem. I add the support for smallscreens, update code
version but my app is not in market...
this is my manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pos**.*"
android:versionCode="3"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme ="@style/CustomTheme" android:debuggable="false">
<activity android:name=".Start"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="Login"></activity>
<activity android:name="MenuPrincipale"></activity>
...
<activity android:name="InsertIssue"></activity>
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.CAMERA"></uses-permission>
<uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
<supports-screens
android:normalScreens="true"
android:largeScreens="true"
android:smallScreens="true">
</supports-screens>
</manifest>
Original comment by misitifr...@gmail.com
on 18 Dec 2010 at 8:59
Original issue reported on code.google.com by
diego.ma...@gmail.com
on 23 Nov 2010 at 1:39