-
-
Notifications
You must be signed in to change notification settings - Fork 29
add automatic installation of play apps into work profile #147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 16
Are you sure you want to change the base?
Conversation
New, simpler approach. No custom permissions, no custom apis In InstallStart when installing apps it checks if play store is genuine google play store and the user is a work profile and skips the DISALLOW_UNKNOWN_SOURCES restriction DevicePolicyGmsHooks runs after device policy manager creates the profile and installs store + services and gives the store permission to install packages (REQUEST_INSTALL_PACKAGES) (only if the managing app requires play services) |
65c24ec
to
6090d44
Compare
I remember last time I was told the play store installation shouldn't happen in DevicePolicyManagerService as it has too many permissions I need the installation to happen just before the device policy app is installed and gets any intent, as it may crash due to lack of play services. I'm none the wiser on how to do that securely and I'd appreciate some guidence if possible |
Absolute legend mate, thank you so much for continuing to develop and push this! |
6090d44
to
b7c9a88
Compare
5f3142f
to
8edf282
Compare
3ec1472
to
ccaf1e6
Compare
How do we know the managing app requires play services? For example, Microsoft Company Portal requires it to set up the work profile. Will this change support that use case? |
See 437b272#diff-d0c4fee5a9bb21d19df9696c4428b8053d7842e0e3fde3356fd4bdc335666548R33 |
44f6627
to
c0c2721
Compare
b7c9a88
to
bdfe2c2
Compare
1e77b17
to
acd9811
Compare
fe7b0c1
to
0c8ac15
Compare
bdfe2c2
to
006d02d
Compare
006d02d
to
b45559b
Compare
b45559b
to
4778e63
Compare
Stopped working on android 16, need to find a fix
|
When setting up a google-managed work profile, GmsCore tries to install the Android Device Policy app For this to work REQUEST_INSTALL_PACKAGES permission needs to be in it's manifest
…nto work profile Currently when creating a work profile with a DPC app that requires play services, the DPC app expects play services to also exist on the work profile Since play services aren't global on GOS, this patch automatically installs them into the work profile Whether an app requires play services is automatically detected Because this needs to happen before the DPC app is triggered in any way in the work profile, this needs to be part of the profile creation itself.
When a work profile with play services gets created Play Store can't install any apps as the work profile may have a policy active to forbid unknown sources as it is not aware that play store is not a system app and gets blocked by that policy. Here we detect if the play store is genuine and is trying to install an app in a work profile. If that is the case we allow it to proceed, despite not being a
4778e63
to
0742a64
Compare
new issue, play store is not being copied. |
Currently when creating a work profile with a DPC app that requires play services, the DPC app expects play services to also exist on the work profile
Since play services aren't global on GOS, this patch automatically installs them into the work profile
Whether an app requires play services is automatically detected
Because this needs to happen before the DPC app is triggered in any way in the work profile, this needs to be part of the profile creation itself.