2013-08-11 10 views
5

Superuser-App auf meinem Handy installiert ist, aber meine app fällt, wenn einen Superuser-Anfrage mit dem folgenden Fehler zu machen versucht:Superuser-Aktivität nicht gefunden

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) 
    ... 

hier Antrag cide von meiner Tätigkeit zu machen:

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! 
+1

möglicherweise müssen Sie dies sehen: http://stackoverflow.com/questions/3988454/request-superuser-rights-to-edit-file –

Antwort

1

Bitte überprüfen Sie Ihre manifest file.Have Sie richtig Ihre Aktivität erklärt wie folgt aus:

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

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