How to have a process name different from package name for Android app?
I have an android app with some package name. (like com.example.name) But I would like to run the app in a process under some other name (l开发者_开发知识库ike com.example.othername). BTW, I do not have another app with package name com.example.othername. How do I achieve this?
You probably want to use the android:process
attribute on the <application>
tag in your manifest file.
精彩评论