Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread String
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=0x1020

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread Raghav Sood
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

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread Kostya Vasilyev
Raghav, Move permission INTERNET from inside activity to be directly inside manifest and rename it to uses-permission. Wrong: manifest application activity permission INTERNET Right: manifest application activity . /activity /application

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread Raghav Sood
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 /

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread Raghav Sood
I tried what kostya said but now the app doesn't even compile. On 6/16/11, Raghav Sood raghavs...@gmail.com wrote: 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

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread Kostya Vasilyev
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

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread νιנαソkum
application android:icon=@drawable/icon android:label=@string/app_ name android:permission=android.permission.INTERNET android:permission=android. permission.INTERNET why u added this line here ? On Thu, Jun 16, 2011 at 1:55 PM, Raghav Sood raghavs...@gmail.com wrote: Okay now my

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread Raghav Sood
No tutorial but I used the same thing in a knots and crosses app of mine and it seemed to work. Kostya's suggestion worked perfectly. Thanks a lot On 6/16/11, νιנαソkum@r iamvijayaku...@gmail.com wrote: application android:icon=@drawable/icon android:label=@string/app_ name

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread String
Did your naughts crosses app access the internet? -- 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

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread gaurav gupta
Hi Dude. chk ur manifest file u r using internet permission wrong. use this line above the application tag. it will work .. working in my Nexus. i only chage this.(Remove ur internet permission line from application tag) :) uses-permission android:name=*android.permission.INTERNET*/

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-16 Thread Raghav Sood
String:- Yes the knots and crosses app serves ads from admob and hence uses the internet. Gaurav:- Thanks but I have already fixed it. Appreciate your help though. Thanks On 6/16/11, gaurav gupta gaurav.gupta...@gmail.com wrote: m attaching working copy of Quaker. On Thu, Jun 16, 2011 at

[android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-15 Thread String
What do you get in logcat from the force close? 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

Re: [android-developers] Re: Application doesn't install but Icon comes in launcher

2011-06-15 Thread Raghav Sood
TreKing:- I am running the emulator from the debugger but the phone runs it as a normal app, not in any debugging or any other mode. String:- The logcat out put is: For the installation: 06-16 11:24:10.371: DEBUG/PackageManager(73): Scanning package com.raghavsood.quaker 06-16 11:24:10.431: