Home | History | Annotate | Download | only in ndk

Lines Matching refs:debuggable

133     debuggable_attrib = "{}debuggable".format(ANDROID_XMLNS)
135 debuggable = applications[0].attrib[debuggable_attrib]
136 if debuggable == "true":
138 elif debuggable == "false":
141 msg = "Unexpected android:debuggable value: '{}'"
142 error(msg.format(debuggable))
271 debuggable = is_debuggable(manifest_root)
272 if not debuggable:
273 error("Application is not marked as debuggable in its manifest.")
398 "the application is installed and debuggable?")