Lines Matching full:uses
48 parser.add_argument('--uses-library', dest='uses_libraries', action='append',
49 … help='specify additional <uses-library> tag to add. android:requred is set to true')
50 parser.add_argument('--optional-uses-library', dest='optional_uses_libraries', action='append',
51 … help='specify additional <uses-library> tag to add. android:requred is set to false')
52 parser.add_argument('--uses-non-sdk-api', dest='uses_non_sdk_api', action='store_true',
74 """Ensure the manifest contains a <uses-sdk> tag with a minSdkVersion.
87 # Get or insert the uses-sdk element
88 uses_sdk = get_children_with_tag(manifest, 'uses-sdk')
90 raise RuntimeError('found multiple uses-sdk elements')
94 element = doc.createElement('uses-sdk')
98 # Insert an indent before uses-sdk to line it up with the indentation of the
177 """Add additional <uses-library> tags
206 if find_child_with_attribute(application, 'uses-library', android_ns,
208 # If the uses-library tag of the same 'name' attribute value exists,
212 ul = doc.createElement('uses-library')