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
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=0x1020
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=0x1020
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

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 Intent { act=android.intent.action.MAIN
 cat=[android.intent.category.LAUNCHER] flg=0x1020
 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=0x1020
 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=0x1020
 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/

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


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
 uses-permission INTERNET
/manifest

-- Kostya

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

 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=0x1020
  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=0x1020
  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=0x1020
  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

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 /
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=0x1020
 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=0x1020
 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=0x1020
 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


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
   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=0x1020
 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=0x1020
 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=0x1020
 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/



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


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 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=0x1020
  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=0x1020
  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=0x1020
  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

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 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=0x1020
  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=0x1020
  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=0x1020
  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




-- 




Nobody can go back and start a new beginning, but anyone can start today
and make a new ending
-
Thanks,
Regards,
νιנαソαkum@r M
BloG:http://iamvijayakumar.blogspot.com/
Mob.No:09048382536(Kerala)
Mob.No:09751076707(TN)

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

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
 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 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=0x1020
  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=0x1020
  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=0x1020
  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




 --




 Nobody can go back and start a new beginning, but anyone can start today
 and make a new ending
 -
 Thanks,
 Regards,
 νιנαソαkum@r M
 BloG:http://iamvijayakumar.blogspot.com/
 Mob.No:09048382536(Kerala)
 Mob.No:09751076707(TN)

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

-- 
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 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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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*/
uses-permission


On Thu, Jun 16, 2011 at 5:35 PM, String sterling.ud...@googlemail.comwrote:

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

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 6:13 PM, gaurav gupta
 gaurav.gupta...@gmail.comwrote:

 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*/
 uses-permission


 On Thu, Jun 16, 2011 at 5:35 PM, String
 sterling.ud...@googlemail.comwrote:

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


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


[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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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: INFO/PackageManager(73):
/data/app/com.raghavsood.quaker-1.apk changed; unpacking
06-16 11:24:10.471: DEBUG/installd(35): DexInv: --- BEGIN
'/data/app/com.raghavsood.quaker-1.apk' ---
06-16 11:24:10.791: DEBUG/installd(35): DexInv: --- END
'/data/app/com.raghavsood.quaker-1.apk' (success) ---
06-16 11:24:10.791: INFO/ActivityManager(73): Force stopping package
com.raghavsood.quaker uid=10036
06-16 11:24:10.791: DEBUG/PackageManager(73):   Activities:
com.raghavsood.quaker.Quaker
06-16 11:24:12.032: INFO/installd(35): move
/data/dalvik-cache/data@a...@com.raghavsood.quaker-1.apk@classes.dex -
/data/dalvik-cache/data@a...@com.raghavsood.quaker-1.apk@classes.dex
06-16 11:24:12.041: DEBUG/PackageManager(73): New package installed in
/data/app/com.raghavsood.quaker-1.apk
06-16 11:24:21.442: INFO/ActivityManager(73): Starting activity:
Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x1000
cmp=com.raghavsood.quaker/.Quaker }
06-16 11:24:21.751: INFO/ActivityManager(73): Start proc
com.raghavsood.quaker for activity com.raghavsood.quaker/.Quaker:
pid=305 uid=10036 gids={}


For clicking the icon in the launcher:


06-16 11:25:07.338: INFO/ActivityManager(73): Starting activity:
Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x1020
cmp=com.raghavsood.quaker/.Quaker }
06-16 11:25:07.338: WARN/ActivityManager(73): Permission Denial:
starting Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x1020
cmp=com.raghavsood.quaker/.Quaker } from ProcessRecord{44e8e070
210:com.android.launcher/10017} (pid=210, uid=10017) requires
android.permission.INTERNET
06-16 11:25:07.367: ERROR/Launcher(210): Launcher does not have the
permission to launch Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x1020
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=0x1020
cmp=com.raghavsood.quaker/.Quaker }
06-16 11:25:07.367: ERROR/Launcher(210): java.lang.SecurityException:
Permission Denial: starting Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x1020
cmp=com.raghavsood.quaker/.Quaker } from ProcessRecord{44e8e070
210:com.android.launcher/10017} (pid=210, uid=10017) requires
android.permission.INTERNET
06-16 11:25:07.367: ERROR/Launcher(210): at
android.os.Parcel.readException(Parcel.java:1247)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.os.Parcel.readException(Parcel.java:1235)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.app.ActivityManagerProxy.startActivity(ActivityManagerNative.java:1298)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.app.Instrumentation.execStartActivity(Instrumentation.java:1373)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.app.Activity.startActivityForResult(Activity.java:2817)
06-16 11:25:07.367: ERROR/Launcher(210): at
com.android.launcher2.Launcher.startActivityForResult(Launcher.java:1053)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.app.Activity.startActivity(Activity.java:2923)
06-16 11:25:07.367: ERROR/Launcher(210): at
com.android.launcher2.Launcher.startActivitySafely(Launcher.java:1462)
06-16 11:25:07.367: ERROR/Launcher(210): at
com.android.launcher2.AllApps2D.onItemClick(AllApps2D.java:178)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.widget.AdapterView.performItemClick(AdapterView.java:284)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.widget.AbsListView$PerformClick.run(AbsListView.java:1696)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.os.Handler.handleCallback(Handler.java:587)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.os.Handler.dispatchMessage(Handler.java:92)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.os.Looper.loop(Looper.java:123)
06-16 11:25:07.367: ERROR/Launcher(210): at
android.app.ActivityThread.main(ActivityThread.java:4627)
06-16 11:25:07.367: ERROR/Launcher(210): at
java.lang.reflect.Method.invokeNative(Native Method)
06-16 11:25:07.367: ERROR/Launcher(210): at
java.lang.reflect.Method.invoke(Method.java:521)
06-16 11:25:07.367: ERROR/Launcher(210): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
06-16 11:25:07.367: ERROR/Launcher(210): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
06-16 11:25:07.367: ERROR/Launcher(210): at
dalvik.system.NativeStart.main(Native