├── .classpath ├── .gitignore ├── AndroidManifest.xml ├── LICENSE.md ├── README.md ├── proguard-project.txt ├── proguard.cfg ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ └── activity_main.xml ├── values │ └── strings.xml └── xml │ └── uses_policies.xml ├── screenshot_1.png ├── screenshot_2.png ├── screenshot_3.png ├── screenshot_4.png ├── screenshot_5.png ├── screenshot_6.png ├── screenshot_7.png ├── screenshot_9.png └── src └── com └── booknara └── deviceadmin ├── DeviceAdminDemoReceiver.java ├── DeviceAdminUtil.java └── MainActivity.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/README.md -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/proguard.cfg -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/xml/uses_policies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/res/xml/uses_policies.xml -------------------------------------------------------------------------------- /screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/screenshot_1.png -------------------------------------------------------------------------------- /screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/screenshot_2.png -------------------------------------------------------------------------------- /screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/screenshot_3.png -------------------------------------------------------------------------------- /screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/screenshot_4.png -------------------------------------------------------------------------------- /screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/screenshot_5.png -------------------------------------------------------------------------------- /screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/screenshot_6.png -------------------------------------------------------------------------------- /screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/screenshot_7.png -------------------------------------------------------------------------------- /screenshot_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/screenshot_9.png -------------------------------------------------------------------------------- /src/com/booknara/deviceadmin/DeviceAdminDemoReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/src/com/booknara/deviceadmin/DeviceAdminDemoReceiver.java -------------------------------------------------------------------------------- /src/com/booknara/deviceadmin/DeviceAdminUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/src/com/booknara/deviceadmin/DeviceAdminUtil.java -------------------------------------------------------------------------------- /src/com/booknara/deviceadmin/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/booknara/AndroidDeviceAdmin/HEAD/src/com/booknara/deviceadmin/MainActivity.java --------------------------------------------------------------------------------