Home | History | Annotate | Download | only in ndk

Lines Matching refs:MANIFEST

23  <application> element of its manifest.
80 # Name of the manifest file
81 MANIFEST = 'AndroidManifest.xml'
128 help='List all launchable activity names from manifest',
382 'manifest' element.
393 the first <manifest><application> element we find.
459 if not os.path.isfile(PROJECT+os.sep+MANIFEST):
461 It is missing a %s file.''' % (MANIFEST))
464 if os.path.isfile(MANIFEST):
471 if os.path.isfile(CURDIR+os.sep+MANIFEST):
480 PACKAGE_NAME = extract_package_name(PROJECT+os.sep+MANIFEST)
486 Please check that the file is well-formed!''' % (PROJECT+os.sep+MANIFEST))
488 log('Extracting list of launchable activities from manifest:')
489 print(' '.join(extract_launchable(PROJECT+os.sep+MANIFEST)))
537 DEBUGGABLE = extract_debuggable(PROJECT+os.sep+MANIFEST)
540 # ok to not have android:debuggable set to true in the original manifest.
552 - Modify your manifest to set android:debuggable attribute to "true",
582 OPTION_LAUNCH = extract_launchable(PROJECT+os.sep+MANIFEST)
584 error('''Could not extract name of launchable activity from manifest!
589 Please fix your manifest file and rebuild/re-install your application.''')
613 - The installed package does not match your current manifest.