Hi Hassan, This is my AndroidManifest.xml file:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.portugalemgrande.LiveGalleryGold" android:versionCode="4" android:versionName="1.1"> <application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="false"> <service android:label="@string/app_name" android:icon="@drawable/icon" android:enabled="true" android:permission="android.permission.BIND_WALLPAPER" android:name="com.portugalemgrande.LiveGalleryGold.LiveGallery"> <intent-filter android:priority="1" > <action android:name="android.service.wallpaper.WallpaperService" /> </intent-filter> <meta-data android:name="android.service.wallpaper" android:resource="@xml/wallpaper" /> </service> <activity android:exported="true" android:label="@string/LiveGallery_Settings" android:name="com.portugalemgrande.LiveGalleryGold.LiveGalleryPreferences"> </activity> <activity android:label="Home" android:exported="true" android:name="com.portugalemgrande.LiveGalleryGold.MarketActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.INFO" /> </intent-filter> </activity> <activity android:exported="true" android:name="com.portugalemgrande.LiveGalleryGold.About"></activity> </application> * <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="7"/> * <uses-feature android:name="android.software.live_wallpaper"></uses-feature> <uses-permission android:name="com.android.vending.CHECK_LICENSE" /> </manifest> As you can see, I've set the minSdkVersion but not for resolution. Is that mandatory? Because the application should work with any resolution... Best regards, Pedro Duque On 13 December 2010 06:56, Muhammad Ali <[email protected]> wrote: > Hi, > > I am sure you did not set the AndroidManifest.xml parameters for > your application the resolution and the min sdk version. You should > take a look of the parameter for this particular file. > > Thanks > Muhammad Ali Hassan > > On Dec 10, 11:35 pm, Pedro Duque <[email protected]> wrote: > > Hi, > > > > I've two applications in Android Market, "Live Gallery" > > (com.portugalemgrande.LiveGallery) which is a free application and "Live > > Gallery Gold" (com.portugalemgrande.LiveGalleryGold) which is the paid > > version. > > > > Although I can see both of them in my phone (in Portugal) if I use a > similar > > friend's phone the app doesn't appear. Shouldn't it be available on all > > Android Markets? Is there anything we should do to make it available > > worldwide? > > > > Can you search for it in your market just to see if you can find this > apps? > > Please report here with country please. > > > > Thank you! > > Pedro Duque > > -- > 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]<android-developers%[email protected]> > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- 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

