Home | History | Annotate | Download | only in ndk

Lines Matching full: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
481 simply extract the 'android:debuggable' attribute value from
488 if str(k).endswith('debuggable'):
628 DEBUGGABLE = extract_debuggable(PROJECT+os.sep+MANIFEST)
629 log('Found debuggable flag: %s' % ('true' if DEBUGGABLE==True else 'false'))
631 # ok to not have android:debuggable set to true in the original manifest.
635 if not DEBUGGABLE:
639 error('''Package %s is not debuggable ! You can fix that in two ways:
643 - Modify your manifest to set android:debuggable attribute to "true",
650 the android:debuggable flag to 'true' but did not rebuild the
659 error('''Non-debuggable application installed on the target device.
660 Please re-install the debuggable version!''')
667 your installed application is debuggable?''')