4 messages in com.googlegroups.android-developersRe: Can AndroidManifest.xml hold more...
FromSent OnAttachments
Andrew07 Jan 2008 23:57 
hackbod08 Jan 2008 09:35 
Andrew08 Jan 2008 17:56 
hackbod08 Jan 2008 18:20 
Subject:Re: Can AndroidManifest.xml hold more than one application tags?
From:Andrew (hong@gmail.com)
Date:01/08/2008 05:56:30 PM
List:com.googlegroups.android-developers

I am still confused about the process. All of my activities and services are in one process, right? Which one is in the main thread? The process will live until all the activities and services exit, right?

On Jan 8, 9:35 am, hackbod <hack@gmail.com> wrote:

You can only have one <application> tag in a manifest, but under that tag you can have any number of components (activities, including main activities, services, etc).

To have your components run in multiple processes, use the android:process tag.

http://code.google.com/android/devel/bblocks-manifest.htmlhttp://code.google.com/android/reference/android/R.styleable.html#And...

On Jan 7, 11:57 pm, Andrew <hong@gmail.com> wrote:

If I set two applications tags in AndroidManifest.xml, one for activity, another for service, it is OK? Then there will be two applications in one apk? There will be two processes sometimes?