Home | History | Annotate | only in /developers/build/prebuilts/gradle/BasicManagedProfile
Up to higher level directory
NameDateSize
.google/10-Mar-2015
Application/10-Mar-2015
build.gradle16-Dec-201414
CONTRIB.md16-Dec-20141.6K
CONTRIBUTING.md10-Mar-20151.5K
gradle/16-Dec-2014
gradlew16-Dec-20145K
gradlew.bat16-Dec-20142.3K
LICENSE16-Dec-201411.1K
NOTICE10-Mar-2015613
packaging.yaml16-Dec-2014489
README.md10-Mar-20153.4K
screenshots/10-Mar-2015
settings.gradle16-Dec-201422

README.md

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