in Android’s security and permissions guide it states:
At install time, Android gives each package a distinct Linux user ID. The identity remains constant for the duration of the package’s life on that device. On a different device, the same package may have a different UID; what matters is that each package has a distinct UID on a given device.
What I’m wondering is: by “package” are they referring to an application that is installed on a device, or to Java’s package names in a project? Can someone explain?
Thanks,
Igor
It refers to the unique android package name defined in AndroidManifest.xml, not the Java package.