Hi,

I've tested my app on two real devices (HTC Evo and Motorola Droid)
and the emulator and it works fine. However, some customers haven't
been able to properly open the app (Samsung Moment is one affected
device). I do not have any icons in the folders other than the
drawable-hdpi, so I'm wondering if thats the problem (with icons
displaying on lower resolutions etc). I've attached the manifest file.
Any help would be much appreciated!

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="a.b.c"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:label="@string/app_name"
android:icon="@drawable/logo72">
    <uses-library android:name="com.google.android.maps" />
        <activity android:name=".TabGmaps"
                  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=".Checkbox"
                        android:label="@string/app_name"></activity>
                        <activity android:name=".InfoTab"
                        android:label="@string/app_name"></activity>
                        <activity android:name=".MapsActivity"
                        android:label="@string/app_name"></activity>
                        <activity android:name=".RestaurantList"
                        android:label="@string/app_name"></activity>

    </application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission
android:name="android.permission.ACCESS_COARSE_LOCATION"/>

<uses-sdk android:minSdkVersion="3" />
</manifest>


-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to