On Thu, Jul 29, 2010 at 7:23 AM, David Given <[email protected]> wrote: > In order to keep some native code happy, I need to launch an activity in > a new process. Does anyone know how to do this? > > I can set the activity's process attribute in the manifest, but this > will cause *all* instances of the activity to appear in the *same* > process, which I can't have.
You're saying you want to use *several processes* for one app? Not one, not two, but many? In that case, fix the native code. You will run out of RAM. You're not even supposed to use two processes for most apps, let alone more than that. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 2.9 Available! -- 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

