Reputation: 311
Hello I am trying to find out how is guid and UID assigned to a particular app in android. I know roughly what goes on in zygote and also that during package installation UID is assigned to that app, however I want to know where exactly this takes place and how ?
If anyone could point to the source files it would save a lot of my time.
Upvotes: 1
Views: 1334
Reputation: 103
I don't have a detailed answer for you, but you could start here:
The PackageManagerService handles installation. I am guessing it delegates the task of setting the GUID, but it's a starting point.
Upvotes: 1