Hi,
I am going to be insane. I published my live wallaper ("stonerview")
with the manifest I included below (no copy protection, free).
This will not show on the market for my untampered Motorola milestone
(Droid in the US) with 2.1 OTA upgrade. Any ideas what I can try?
(Tried: include screens, ommiting uses-feature)
Peter
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.kliemax.stonerview" android:versionCode="5"
android:versionName="1.41">
<uses-feature android:name="android.software.live_wallpaper" />
<uses-sdk android:minSdkVersion="7" />
<supports-screens android:smallScreens="true"
android:normalScreens="true" android:largeScreens="true"
android:anyDensity="true" />
<application android:label="StonerView" android:icon="@drawable/
icon">
<service android:label="Stonerview"
android:name=".StonerViewService"
android:permission="android.permission.BIND_WALLPAPER">
<intent-filter>
<action
android:name="android.service.wallpaper.WallpaperService" /
>
</intent-filter>
<meta-data android:name="android.service.wallpaper"
android:resource="@xml/stonerview" />
</service>
<activity android:label="Stonerview setings"
android:name=".StonerviewPreferenceActivity"
android:theme="@android:style/Theme.Light.WallpaperSettings"
android:exported="true">
</activity>
</application>
</manifest>
On 26 Apr., 17:20, yuska <[email protected]> wrote:
> I just searched on my Droid and it found yourwallpaperright away.
> Could you search for mylivewallpaperon 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 comingup), 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'mnotcertain. I've searched for
> mylivewallpapers 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 AndroidMarketand again...the
> > app didnotshowupwhen searching for "pub:Yakloin" (like I always
> > do) and I didnotsee it scrolling through the search results for
> > "LiveWallpaper" (which it previously showedupunder as well). I am
> > talking about from my Droid only. It has always showedupfine from
> > my Nexus One, and it did showupfor 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 startshowingupafter a couple of days.
>
> > In the meantime, can someone with a Droid please try to find theLive
> >Wallpaper? It is called "H2O Physics ToyLiveWallpaper", 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 showsupon my Moto Droid on the
> > >Market. Notsure what caused it to showupthough, because I tested
> > > after each update and it didnotshowup. So, I amnottoo confident
> > > about how to go forward with future AndroidManifest.xml files for the
> > >LiveWallpapers 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
> > > > >LiveWallpaperto showupon the AndroidMarketfor a MotoDroidwith
> > > > > the2.1OTAupdate. It showsupand 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> includingnothaving 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-Hidequotedtext
> > > > -
>
> > > > - 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-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
>
> --
> 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