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
549 # Check that the application is debuggable, or nothing will work
550 DEBUGGABLE=`run_awk_manifest_script extract-debuggable.awk`
551 log "Found debuggable flag: $DEBUGGABLE"
552 if [ $? != 0 -o "$DEBUGGABLE" != "true" ] ; then
554 # ok to not have android:debuggable set to true in the original manifest.
559 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
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
    [all...]

Completed in 1941 milliseconds