Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ public boolean checkForDangerousProps() {
final Map<String, String> dangerousProps = new HashMap<>();
dangerousProps.put("ro.debuggable", "1");
dangerousProps.put("ro.secure", "0");
dangerousProps.put("ro.adb.secure", "1"); // Added the new property for rooted Emulators

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
dangerousProps.put("ro.adb.secure", "1"); // Added the new property for rooted Emulators
dangerousProps.put("ro.adb.secure", "1"); // Added the new property for rooted Emulators from Android 14


boolean result = false;

Expand Down