我正在尝试执行以下命令:
Process process = Runtime.getRuntime().exec("adb shell dpm set-device-owner com.example.package/.DeviceAdmin", null,null);
并得到以下异常
W/System.err:java.io.IOException: Cannot run program "adb": error=13, Permission denied
W/System.err: at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
W/System.err: at java.lang.Runtime.exec(Runtime.java:692)
W/System.err: at java.lang.Runtime.exec(Runtime.java:525)
我正在尝试通过以编程方式执行“adb shell dpm set-device-owner com.example.package/.DeviceAdmin”将我的设备设置为所有者。
我一直在参考以下 SO 链接,但是我似乎无法解决此错误。
https://stackoverflow.com/a/27909315/5521089
https://stackoverflow.com/a/44164984/5521089
注意:我尝试运行不带 adb shell 前缀的命令,但是它返回 null 并且没有应用任何更改。
以下代码执行我的命令。
try {
StringBuffer output = new StringBuffer();
Process process = Runtime.getRuntime().exec("dpm set-device-owner com.example.package/.DeviceAdmin", null,null);
process.waitFor();
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = "";
while ((line = reader.readLine()) != null) {
output.append(line + "n");
Log.d("OUTPUT = ", output.toString());
}
} catch (Exception e) {
Log.e("LOGINACTIVITY ", "device owner not set");
Log.e("LOGINACTIVITY ", e.toString());
e.printStackTrace();
}
下面是我的 DeviceAdminReceiver 子类
public class DeviceAdmin extends DeviceAdminReceiver {
public ComponentName getComponentName(Context context){
return new ComponentName(context.getApplicationContext(), DeviceAdmin.class);
}
void showToast(Context context, String msg) {
String status = msg;
Toast.makeText(context, status, Toast.LENGTH_SHORT).show();
}
@Override
public void onEnabled(Context context, Intent intent) {
showToast(context, "Enabled");
}
@Override
public void onDisabled(Context context, Intent intent) {
showToast(context,"Disabled");
}
}
我的清单注册我的接收器
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
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=".DeviceAdmin"
android:permission="android.permission.BIND_DEVICE_ADMIN">
<meta-data
android:name="android.app.device_admin"
android:resource="@xml/policies"/>
<intent-filter>
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED"/>
</intent-filter>
</receiver>
</application>
检查设置和设备没有帐户(这是一个没有任何 google play 服务并且没有 root 的 android 设备。)。该应用的 minSdkVersion 为 21/targetSdkVersion 为 27。
最终,我希望将设备设置为所有者(没有 NFC),其唯一目的是在不征求用户许可的情况下固定屏幕。(这是一个 POS 应用程序)。如何执行命令以便我可以将设备设置为所有者而没有任何例外?