On Mar 2, 11:15 pm, MaHaJaN <[email protected]> wrote: > To make it more clear > say i launced a process using > adb shell am start -a android.intent.action.MAIN -n > com.abc.org/.First > How can i pass environment variables to this launced process.
You can't pass Linux environment variables that way. Each app process starts from the zygote, and zygote starts from initd, so if it wasn't set by initd it won't be available in the process. Does it need to be an environment variable, or are you just looking for ways to pass data around? -- 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

