29 lines
931 B
XML
29 lines
931 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Managed configurations applied to target apps when this APK is the Device Owner.
|
|
Applied by ConfigReceiver.applyManagedConfigs() — uncomment the code block there
|
|
and activate device owner first:
|
|
adb shell dpm set-device-owner app.pawlet.config/.PawletDeviceAdminReceiver
|
|
|
|
Each <app package="..."> block sets restrictions on that app.
|
|
Each <restriction> inside it maps to a key the target app reads via
|
|
RestrictionsManager.getApplicationRestrictions().
|
|
|
|
type attribute: "string" (default), "boolean", "integer"
|
|
-->
|
|
<managed-configs>
|
|
|
|
<!--
|
|
<app package="app.lawnchair">
|
|
<restriction key="icon_pack" value="app.pawlet.config" type="string" />
|
|
</app>
|
|
-->
|
|
|
|
<!--
|
|
<app package="dev.patrickgold.florisboard">
|
|
<restriction key="some_config_key" value="some_value" type="string" />
|
|
</app>
|
|
-->
|
|
|
|
</managed-configs>
|