Home | History | Annotate | Download | only in ndk

Lines Matching refs:MANIFEST

23  <application> element of its manifest.
88 # Name of the manifest file
89 MANIFEST = 'AndroidManifest.xml'
141 help='List all launchable activity names from manifest',
444 'manifest' element.
455 the first <manifest><application> element we find.
523 if not os.path.isfile(PROJECT+os.sep+MANIFEST):
525 It is missing a %s file.''' % (MANIFEST))
528 if os.path.isfile(MANIFEST):
535 if os.path.isfile(CURDIR+os.sep+MANIFEST):
544 PACKAGE_NAME = extract_package_name(PROJECT+os.sep+MANIFEST)
550 Please check that the file is well-formed!''' % (PROJECT+os.sep+MANIFEST))
552 log('Extracting list of launchable activities from manifest:')
553 print(' '.join(extract_launchable(PROJECT+os.sep+MANIFEST)))
601 DEBUGGABLE = extract_debuggable(PROJECT+os.sep+MANIFEST)
604 # ok to not have android:debuggable set to true in the original manifest.
616 - Modify your manifest to set android:debuggable attribute to "true",
646 OPTION_LAUNCH = extract_launchable(PROJECT+os.sep+MANIFEST)
648 error('''Could not extract name of launchable activity from manifest!
653 Please fix your manifest file and rebuild/re-install your application.''')
677 - The installed package does not match your current manifest.