OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DEBUGGABLE
(Results
1 - 3
of
3
) sorted by null
/gdk/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/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
522
# Check that the application is
debuggable
, or nothing will work
523
DEBUGGABLE
=`run_awk_manifest_script extract-
debuggable
.awk`
524
log "Found
debuggable
flag: $
DEBUGGABLE
"
525
if [ $? != 0 -o "$
DEBUGGABLE
" != "true" ] ; then
527
# ok to not have android:
debuggable
set to true in the original manifest.
532
echo "ERROR: Package $PACKAGE_NAME is not
debuggable
! You can fix that in two ways:
[
all
...]
Completed in 28 milliseconds