I just searched on my Droid and it found your wallpaper right away. Could you search for my live wallpaper on your Droid? There's 2: liveScroller and liveStrobe. Just search "yuska" though, and it should give both listed. I have a strong feeling your Droid won't find them, which brings me to my next point.
My Droid has been the ONLY Droid I've personally found my apps on, though they install on N1 fine. I just received my Droid from Google about a week ago (for the dev conference coming up), so it was basically a factory reset phone as I updated it to 2.1 before doing anything else. I think your issue has something to do with a bug in the 2.1 update for the Droid, but I'm not certain. I've searched for my live wallpapers on roughly 10 Droids now, and only mine has found them. On Apr 26, 11:05 am, shaun <[email protected]> wrote: > I decided to update the AndroidManifest.xml to include the following > line (as it should be): > <uses-feature android:name="android.software.live_wallpaper" /> > > I added that and incremented the versionCode and versionName and that > is it. I uploaded the change to the Android Market and again...the > app did not show up when searching for "pub:Yakloin" (like I always > do) and I did not see it scrolling through the search results for > "Live Wallpaper" (which it previously showed up under as well). I am > talking about from my Droid only. It has always showed up fine from > my Nexus One, and it did show up for a while on the Droid until I just > uploaded this change I mentioned. > > This behavior is very strange to me. And if it goes like last time, > the app will just start showing up after a couple of days. > > In the meantime, can someone with a Droid please try to find the Live > Wallpaper? It is called "H2O Physics Toy Live Wallpaper", but you > should be able to search for "pub:Yakloin" to see it. > > Thanks for any help. > > On Apr 23, 9:42 am, shaun <[email protected]> wrote: > > > > > Well, something changed and it now shows up on my Moto Droid on the > > Market. Not sure what caused it to show up though, because I tested > > after each update and it did not show up. So, I am not too confident > > about how to go forward with future AndroidManifest.xml files for the > > Live Wallpapers to come. > > > Anyone with thoughts? > > > On Apr 21, 5:36 pm, shaun <[email protected]> wrote: > > > > And this is the initial release and the version I wanted to use: > > > > <?xml version="1.0" encoding="utf-8"?> > > > <manifest > > > xmlns:android="http://schemas.android.com/apk/res/android" > > > package="com.yakloinmobile.lw.physics" > > > android:versionCode="101" > > > android:versionName="1.01"> > > > > <uses-sdk android:minSdkVersion="7" /> > > > <uses-feature android:name="android.software.live_wallpaper" /> > > > <uses-permission android:name="android.permission.VIBRATE" /> > > > > <supports-screens > > > android:smallScreens="true" > > > android:normalScreens="true" > > > android:largeScreens="true" > > > android:anyDensity="true" /> > > > > <application > > > android:icon="@drawable/icon" > > > android:label="@string/app_name"> > > > > <service > > > android:label="@string/app_name" > > > android:name=".WaterPhysicsToyLiveWallpaper" > > > android:permission="android.permission.BIND_WALLPAPER"> > > > <intent-filter android:priority="1"> > > > <action > > > android:name="android.service.wallpaper.WallpaperService" /> > > > </intent-filter> > > > <meta-data > > > android:name="android.service.wallpaper" > > > android:resource="@xml/main" /> > > > </service> > > > > <activity > > > android:label="@string/settings" > > > android:name=".WaterPhysicsToySettings" > > > android:theme="@android:style/ > > > Theme.Light.WallpaperSettings" > > > android:exported="true" /> > > > > </application> > > > > </manifest> > > > > On Apr 21, 5:26 pm, Yakloin <[email protected]> wrote: > > > > > I am pulling out my hair trying to figure out what to do to get my > > > > Live Wallpaper to show up on the Android Market for a MotoDroidwith > > > > the2.1OTAupdate. It shows up and downloads just fine on Nexus One. > > > > > I can only think that it has something to do with the > > > > AndroidManifest.xml file contents. I tried all combinations for > > > > <supports-screens> including not having it at all. I tried including/ > > > > excluding the <uses-feature > > > > android:name="android.software.live_wallpaper" />. > > > > > I don't like releasing my app over and over trying to debug this. > > > > Please help out if you can. > > > > > Here is the file for reference (in it's current state): > > > > <?xml version="1.0" encoding="utf-8"?> > > > > <manifest > > > > xmlns:android="http://schemas.android.com/apk/res/android" > > > > package="com.yakloinmobile.lw.physics" > > > > android:versionCode="104" > > > > android:versionName="1.04"> > > > > > <application > > > > android:icon="@drawable/icon" > > > > android:label="@string/app_name"> > > > > > <service > > > > android:label="@string/app_name" > > > > android:name=".WaterPhysicsToyLiveWallpaper" > > > > android:enabled="true" > > > > android:permission="android.permission.BIND_WALLPAPER"> > > > > <intent-filter android:priority="1"> > > > > <action > > > > android:name="android.service.wallpaper.WallpaperService" /> > > > > </intent-filter> > > > > <meta-data > > > > android:name="android.service.wallpaper" > > > > android:resource="@xml/main" /> > > > > </service> > > > > > <activity > > > > android:label="@string/settings" > > > > android:name=".WaterPhysicsToySettings" > > > > android:theme="@android:style/ > > > > Theme.Light.WallpaperSettings" > > > > android:exported="true" /> > > > > > </application> > > > > > <uses-sdk android:minSdkVersion="7" /> > > > > <uses-permission android:name="android.permission.VIBRATE" /> > > > > > </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 > > > > athttp://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 > > > athttp://groups.google.com/group/android-developers?hl=en-Hidequoted text > > > - > > > > - Show quoted text - > > > -- > > 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 > > athttp://groups.google.com/group/android-developers?hl=en-Hide quoted text - > > > - Show quoted text - > > -- > 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 > athttp://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

