Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b93ff770 authored by Steve Fung's avatar Steve Fung Committed by Android Git Automerger
Browse files

am 2a186ba2: am 7f16425d: Merge "crash_reporter: Use ro.debuggable for determining developer mode"

* commit '2a186ba2':
  crash_reporter: Use ro.debuggable for determining developer mode
parents 716d1bcd 2a186ba2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ is_developer_mode() {
  # If we're testing crash reporter itself, we don't want to special-case
  # for developer mode.
  is_crash_test_in_progress && return 1
  if [ "$(getprop ro.build.type)" = "eng" ]; then
  if [ "$(getprop ro.debuggable)" = "1" ]; then
    return 0
  else
    return 1