We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17478c2 commit 7cbfdcaCopy full SHA for 7cbfdca
cSploit/src/org/csploit/android/plugins/LoginCracker.java
@@ -23,6 +23,7 @@
23
import android.content.SharedPreferences;
24
import android.graphics.Color;
25
import android.graphics.Typeface;
26
+import android.os.Build;
27
import android.os.Bundle;
28
import android.view.LayoutInflater;
29
import android.view.Menu;
@@ -329,7 +330,9 @@ public void onClick(View v) {
329
330
mWordlistPicker.addCategory(Intent.CATEGORY_OPENABLE);
331
mWordlistPicker.setType("text/*");
332
mWordlistPicker.setAction(Intent.ACTION_GET_CONTENT);
- mWordlistPicker.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
333
+
334
+ if(Build.VERSION.SDK_INT >= 11)
335
+ mWordlistPicker.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
336
}
337
338
@Override
0 commit comments