• Home
Name Date Size #Lines LOC

..--

.google/03-May-2024-1813

Application/03-May-2024-1,424762

gradle/wrapper/03-May-2024-76

screenshots/03-May-2024-

CONTRIB.mdD03-May-20241.6 KiB3627

CONTRIBUTING.mdD03-May-20241.5 KiB3627

LICENSED03-May-202411.1 KiB202169

NOTICED03-May-2024613 1611

README.mdD03-May-20243.4 KiB8663

build.gradleD03-May-202414 150

gradlewD03-May-20245 KiB165122

gradlew.batD03-May-20242.3 KiB9166

packaging.yamlD03-May-2024489 1610

settings.gradleD03-May-202422 21

README.md

1Android BasicManagedProfile Sample
2===================================
3
4This sample demonstrates basic functionalities of Managed Profile API
5introduced in Android 5.0 Lollipop. You can set up this app as a
6profile owner, and use this app to enable/disable apps in the newly
7created managed profile. You can also set restrictions to some apps,
8enable/disable Intent forwarding between profiles, and wipe out all
9the data associated with the profile.
10
11Introduction
12------------
13
14As of Android 5.0, DevicePolicyManager introduces new features to
15support managed profile.
16
17To set up this app as a profile owner, you need to encrypt your device
18(you are prompted to do if you haven't). This doesn't wipe out the
19device, but be aware that you can set up only one managed profile at a
20time.
21
22[isProfileOwnerApp][1] can be used to determine if a particular
23package is registered as the profile owner for the current user. You
24can initiate the provisioning flow of a managed profile with Intent of
25[ACTION_PROVISION_MANAGED_PROFILE][2].
26
27You have to implement a class extending [DeviceAdminReceiver][3] to
28receive the result of the provisioning flow. Use
29[setProfileEnabled][4] to enable the newly created profile, and your
30app is now set up as a profile owner.
31
32[1]: http://developer.android.com/reference/android/app/admin/DevicePolicyManager.html#isProfileOwnerApp(java.lang.String)
33[2]: http://developer.android.com/reference/android/app/admin/DevicePolicyManager.html#ACTION_PROVISION_MANAGED_PROFILE
34[3]: http://developer.android.com/reference/android/app/admin/DeviceAdminReceiver.html
35[4]: http://developer.android.com/reference/android/app/admin/DevicePolicyManager.html#setProfileEnabled(android.content.ComponentName)
36
37Pre-requisites
38--------------
39
40- Android SDK v21
41- Android Build Tools v21.1.1
42- Android Support Repository
43
44Screenshots
45-------------
46
47<img src="screenshots/not_set_up.png" height="400" alt="Screenshot"/> <img src="screenshots/set_up.png" height="400" alt="Screenshot"/> <img src="screenshots/main.png" height="400" alt="Screenshot"/>
48
49Getting Started
50---------------
51
52This sample uses the Gradle build system. To build this project, use the
53"gradlew build" command or use "Import Project" in Android Studio.
54
55Support
56-------
57
58- Google+ Community: https://plus.google.com/communities/105153134372062985968
59- Stack Overflow: http://stackoverflow.com/questions/tagged/android
60
61If you've found an error in this sample, please file an issue:
62https://github.com/googlesamples/android-BasicManagedProfile
63
64Patches are encouraged, and may be submitted by forking this project and
65submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
66
67License
68-------
69
70Copyright 2014 The Android Open Source Project, Inc.
71
72Licensed to the Apache Software Foundation (ASF) under one or more contributor
73license agreements.  See the NOTICE file distributed with this work for
74additional information regarding copyright ownership.  The ASF licenses this
75file to you under the Apache License, Version 2.0 (the "License"); you may not
76use this file except in compliance with the License.  You may obtain a copy of
77the License at
78
79http://www.apache.org/licenses/LICENSE-2.0
80
81Unless required by applicable law or agreed to in writing, software
82distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
83WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
84License for the specific language governing permissions and limitations under
85the License.
86