HomeSort by relevance Sort by last modified time
    Searched refs:DEBUGGABLE (Results 1 - 3 of 3) sorted by null

  /ndk/build/awk/
extract-debuggable.awk 15 # A nawk/gawk script used to extract the debuggable flag from an
22 DEBUGGABLE = "";
24 # simply extract the 'android:debuggable' attribute value from
28 DEBUGGABLE = XML_ATTR["android:debuggable"];
33 if ( DEBUGGABLE != "true" )
34 DEBUGGABLE = "false";
36 print DEBUGGABLE;
  /ndk/
ndk-gdb 19 # on a given NDK application. The application must be debuggable, i.e.
20 # its android:debuggable attribute must be set to 'true' in the
589 # Check that the application is debuggable, or nothing will work
590 DEBUGGABLE=`run_awk_manifest_script extract-debuggable.awk`
591 log "Found debuggable flag: $DEBUGGABLE"
592 if [ $? != 0 -o "$DEBUGGABLE" != "true" ] ; then
594 # ok to not have android:debuggable set to true in the original manifest.
599 echo "ERROR: Package $PACKAGE_NAME is not debuggable ! You can fix that in two ways:
    [all...]
ndk-gdb.py 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
    [all...]

Completed in 158 milliseconds