How to implement Unified Application Mode (COSU) in Android?

Looking for a solution to integrate COSU mode into Android.I have already passed the links below,

https://developer.android.com/work/cosu.html

Has anyone implemented it successfully?

+5
source share
3 answers

Check out this tutorial and which with an example.

+1
source

You might want to try the Google new Android Management API , it allows you to manage COSU devices without the need to create an agent on the device (device policy controller).

+1
source

I decided that none of the methods was very good. I used the ownership of the device policy to prevent the installation of any other applications, wrote the application to launch (so we were the main screen), made it a system application and used the status manager apis (which are not well known) to remove the β€œRest” button "and prevent the status bar from opening, so there was no way to launch any application other than mine.

0
source

Source: https://habr.com/ru/post/1269337/


All Articles