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

Commit 37c90df9 authored by Yusuke Sato's avatar Yusuke Sato Committed by Gerrit Code Review
Browse files

Merge "Use ro.debuggable instead of ro.build.type"

parents 4e5b2922 246b0fd0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -191,9 +191,9 @@ def restore_dropbox(device, original_dropbox_max_files):

def init_perf(device, output, record_list, tags):
    device.wait()
    build_type = device.get_prop('ro.build.type')
    debuggable = device.get_prop('ro.debuggable')
    original_dropbox_max_files = None
    if build_type != 'user':
    if debuggable == '1':
        # Workaround for Dropbox issue (http://b/20890386).
        original_dropbox_max_files = disable_dropbox(device)