Lines Matching refs:DEBUGGABLE
21 on a given NDK application. The application must be debuggable, i.e.
22 its android:debuggable attribute must be set to 'true' in the
392 simply extract the 'android:debuggable' attribute value from
399 if str(k).endswith('debuggable'):
537 DEBUGGABLE = extract_debuggable(PROJECT+os.sep+MANIFEST)
538 log('Found debuggable flag: %s' % ('true' if DEBUGGABLE==True else 'false'))
540 # ok to not have android:debuggable set to true in the original manifest.
544 if not DEBUGGABLE:
548 error('''Package %s is not debuggable ! You can fix that in two ways:
552 - Modify your manifest to set android:debuggable attribute to "true",
559 the android:debuggable flag to 'true' but did not rebuild the
568 error('''Non-debuggable application installed on the target device.
569 Please re-install the debuggable version!''')
576 your installed application is debuggable?''')