On Thursday, June 16, 2011 6:57:36 AM UTC+1, Gheter wrote:

String:- The logcat out put is:
>
And did you read it? 

ERROR/Launcher(210): Launcher does not have the
permission to launch Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x10200000
cmp=com.raghavsood.quaker/.Quaker }. Make sure to create a MAIN
intent-filter for the corresponding activity or use the exported
attribute for this activity. tag=ApplicationInfo(title=Quaker)
intent=Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x10200000
cmp=com.raghavsood.quaker/.Quaker }

Just like it says, sounds like you're missing the required launcher intent 
in your manifest.
http://developer.android.com/guide/topics/intents/intents-filters.html#ccases

ERROR/Launcher(210): java.lang.SecurityException:
Permission Denial: starting Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x10200000
cmp=com.raghavsood.quaker/.Quaker } from ProcessRecord{44e8e070
210:com.android.launcher/10017} (pid=210, uid=10017) requires
android.permission.INTERNET

Again with the manifest, you need to ask for permission to access the 
internet.
http://developer.android.com/guide/topics/security/security.html#permissions

Generally, it's a good idea to read the error messages you get. :^)

String

>

-- 
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