Searched refs:android_ns (Results 1 – 3 of 3) sorted by relevance
/build/soong/scripts/ |
D | manifest_fixer.py | 26 from manifest import android_ns 104 min_attr = element.getAttributeNodeNS(android_ns, 'minSdkVersion') 106 min_attr = doc.createAttributeNS(android_ns, 'android:minSdkVersion') 115 target_attr = element.getAttributeNodeNS(android_ns, 'targetSdkVersion') 117 target_attr = doc.createAttributeNS(android_ns, 'android:targetSdkVersion') 160 if not find_child_with_attribute(application, 'meta-data', android_ns, 163 ul.setAttributeNS(android_ns, 'android:name', logging_parent_key) 164 ul.setAttributeNS(android_ns, 'android:value', logging_parent_value) 206 if find_child_with_attribute(application, 'uses-library', android_ns, 213 ul.setAttributeNS(android_ns, 'android:name', name) [all …]
|
D | manifest_check.py | 26 from manifest import android_ns 145 name = lib.getAttributeNodeNS(android_ns, 'name') 155 required = lib.getAttributeNodeNS(android_ns, 'required') 179 min_attr = uses_sdk.getAttributeNodeNS(android_ns, 'minSdkVersion') 183 target_attr = uses_sdk.getAttributeNodeNS(android_ns, 'targetSdkVersion')
|
D | manifest.py | 23 android_ns = 'http://schemas.android.com/apk/res/android' variable 61 attr.value = android_ns 63 elif ns.value != android_ns:
|