超级用户应用程序已安装在我的手机上,但我的应用程序在尝试发出超级用户请求时出现以下错误:
18820-18820/com.anth.res E/AndroidRuntime: FATAL EXCEPTION: main
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=act=android.intent.action.superuser (has extras) }
at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1512)
...
这是我的活动提出的要求:
command = "su -c \""+command+"\"";
Intent intent = new Intent("android.intent.action.superuser"); // superuser request
intent.putExtra("name", getResources().getString(R.string.app_name)); // tell Superuser the name of the requesting app
intent.putExtra("packagename", "com.anth.res"); // tel Superuser the name of the requesting package
startActivityForResult(intent, SU_REQUEST); // make the request!