【问题标题】:I cannot set device owner for my app on device我无法在设备上为我的应用设置设备所有者
【发布时间】:2017-05-01 19:14:53
【问题描述】:

我一直在努力通过 adb shell dpm 命令将我的应用程序设置为设备所有者,但出现了错误

 Error: Bad admin: ComponentInfo{com.example.oshao.autolock/com.example.oshao.

autolock.AdminReceiver}

这是我的活动和清单

public class MainActivity extends AppCompatActivity {

private DevicePolicyManager mDpm;
private boolean isKioskModeEnabled = false;
private Button btnEnabled;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    btnEnabled = (Button) findViewById(R.id.btnEnable);
    btnEnabled.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            enableKioskMode(!isKioskModeEnabled);
        }
    });

    ComponentName deviceAdmin = new ComponentName(this, AdminReceiver.class);
    mDpm = (DevicePolicyManager) getSystemService(Context.DEVICE_POLICY_SERVICE);
    if (!mDpm.isAdminActive(deviceAdmin)) {
        Toast.makeText(this, "This ap is not a device admin", Toast.LENGTH_SHORT).show();
    }

    if (mDpm.isDeviceOwnerApp(getPackageName())) {
        mDpm.setLockTaskPackages(deviceAdmin, new String[]{getPackageName()});
    } else {
        Toast.makeText(this, "This app is not the device owner", Toast.LENGTH_SHORT).show();
    }
}

private void enableKioskMode(boolean enabled) {

    if (enabled) {

        if (mDpm.isLockTaskPermitted(this.getPackageName())) {

            startLockTask();
            isKioskModeEnabled = true;
            btnEnabled.setText("Exit Kiosk Mode");

        } else {
            Toast.makeText(this, "Kiosk Mode is not permitted", Toast.LENGTH_SHORT).show();
        }
    } else {

        stopLockTask();
        isKioskModeEnabled = false;
        btnEnabled.setText("Enter Kiosk Mode");

    }

}
}

清单:

<?xml version="1.0" encoding="utf-8"?>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">


    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <receiver
        android:name="com.example.oshao.autolock.AdminReceiver"
        android:permission="android.permission.BIND_DEVICE_ADMIN">

        <meta-data
            android:name="android.app.admin"
            android:resource="@xml/device_admin"/>
        <intent-filter>
            <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
        </intent-filter>

    </receiver>

</application>

我不确定为什么错误仍然存​​在,是因为一台设备只能有一个应用程序被设置为设备所有者? 另一个问题是 adb 命令可以在没有帐户的设备上实现并连接到 pc 以便在终端中输入命令。在设备没有root的情况下,我可以通过应用程序中的代码来完成吗,因为我有几个设备并且很难逐个设置它们,谢谢

【问题讨论】:

  • DeviceAdmin 可以有多个应用。检查此链接:developer.android.com/guide/topics/admin/device-admin.html
  • 尝试在清单中为 AdminReceiver 添加描述,如下所示:&lt;receiver android:name="com.example.oshao.autolock.AdminReceiver" android:permission="android.permission.BIND_DEVICE_ADMIN" android:description="@string/device_admin_description"&gt;
  • @AkhilSoman 我不认为在描述中添加 xml 文件可以解决 adb 错误,我已经尝试过了,还是谢谢。
  • 您是否像api guide 指定的那样扩展了 DeviceAdminReceiver 类?

标签: android device-owner


【解决方案1】:

我在学习本教程时解决了错误的管理错误:http://www.sureshjoshi.com/mobile/android-kiosk-mode-without-root/

我丢失了 src/main/res/xml/device_admin.xml 文件,该文件仅包含:

<device-admin> </device-admin>

【讨论】:

  • 我已经注意到丢失的文件并将其添加到 xml 中...仍然无法正常工作,您尝试过任何其他修改吗?
【解决方案2】:

您必须在设置设备所有者之后首先设置活动管理员,并注意您的包名称必须正确。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2022-11-09
    • 2014-02-06
    • 1970-01-01
    • 2017-10-24
    • 2019-07-17
    • 2021-11-21
    • 2018-04-16
    相关资源
    最近更新 更多