• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps is intents cached?

vigge_sWe

Lurker
I did set the data of my intents to "test" to check if it worked as I wanted, and it did, now I have replaced "test" with URLs which I try to parse, but it seems like "test" still is passed to it, so my guess would be some sort of cache by some kind?

Here is the code: Private Paste - Pastie
and this is the error:

11-17 21:47:50.590: ERROR/AndroidRuntime(8377): java.lang.RuntimeException: Unable to start receiver net.pixomania.lifehacker.LifehackerAppWidgetProvider: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=test flg=0x10000000 }
11-17 21:47:50.590: ERROR/AndroidRuntime(8377): Caused by: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=test flg=0x10000000 }


EDIT: It seems like it's a Samsung Galaxy S issue, the emulator runs it just fine when I actually get it to work properly. I do rather want to use my phone, as the emulator is one of the crappiest emulators I ever seen lol
 
Sounds like you're making some changes to your app and keep updating your phone with the latest. In that case I'd suggest you manually uninstall the app on phone before copying the newer version. What's happening is once you start your app (any app) on phone, it doesn't get exited when you move away from your app, so your app is actually "cached" in OS (until you power off the phone, or uninstall the app).
 
Back
Top Bottom