5

超级用户应用程序已安装在我的手机上,但我的应用程序在尝试发出超级用户请求时出现以下错误:

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!
4

1 回答 1

1

请检查您的清单文件。您是否像这样正确声明了您的活动:

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

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
于 2016-04-18T09:25:13.287 回答