No, your manifest is still wrong.

1 - Change <permission> to <uses-permission> inside <manifest>

2 - Remove android:permission="android.permission.INTERNET" from
<application>

BTW, what prompted you to put 'permission' inside <application>? Is there a
tutorial somewhere?

-- Kostya

2011/6/16 Raghav Sood <raghavs...@gmail.com>

> Okay now my manifest reads as follows:
>
> <?xml version="1.0" encoding="utf-8"?>
> <manifest xmlns:android="http://schemas.android.com/apk/res/android";
>      package="com.raghavsood.quaker"
>      android:versionCode="1"
>      android:versionName="1.0">
>    <permission android:name="android.permission.INTERNET" />
>    <uses-sdk android:minSdkVersion="8" />
>
>    <application android:icon="@drawable/icon"
> android:label="@string/app_name"
> android:permission="android.permission.INTERNET">
>        <activity android:name=".Quaker"
>                  android:label="@string/app_name">
>            <intent-filter>
>                <action android:name="android.intent.action.MAIN" />
>                <category android:name="android.intent.category.LAUNCHER" />
>            </intent-filter>
>        </activity>
>
>    </application>
> </manifest>
>
> Yet the problem persists. Any ideas? Logcat output is the same without
> the internet permission problem. As far as I can see my manifest has
> the required intents and code. Any ideas?
>
>
>
> On 6/16/11, Raghav Sood <raghavs...@gmail.com> wrote:
> > I did but I didn't understand it clearly. Thanks.
> >
> > On 6/16/11, String <sterling.ud...@googlemail.com> wrote:
> >> 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
> android-developers@googlegroups.com
> >> To unsubscribe from this group, send email to
> >> android-developers+unsubscr...@googlegroups.com
> >> For more options, visit this group at
> >> http://groups.google.com/group/android-developers?hl=en
> >
> >
> > --
> > Raghav Sood
> > http://www.raghavsood.com/
> > http://www.androidappcheck.com/
> > http://www.telstop.tel/
> >
>
>
> --
> Raghav Sood
> http://www.raghavsood.com/
> http://www.androidappcheck.com/
> http://www.telstop.tel/
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> 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 android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to