From 7211910fd0d158cd2a4e7d610f1e32b8c9d25817 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Mon, 20 May 2019 13:14:18 -0700 Subject: Add manifest_check tool Add a tool that can check that the tags in an AndroidManifest.xml file match a list provided by the build. Bug: 132357300 Test: manifest_check_test Change-Id: If15abf792282bef677469595e80f19923b87ab62 --- scripts/manifest_fixer_test.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'scripts/manifest_fixer_test.py') diff --git a/scripts/manifest_fixer_test.py b/scripts/manifest_fixer_test.py index 7fbbc17ba..20354218c 100755 --- a/scripts/manifest_fixer_test.py +++ b/scripts/manifest_fixer_test.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # -"""Unit tests for manifest_fixer_test.py.""" +"""Unit tests for manifest_fixer.py.""" import StringIO import sys @@ -393,10 +393,10 @@ class AddExtractNativeLibsTest(unittest.TestCase): return output.getvalue() manifest_tmpl = ( - '\n' - '\n' - ' \n' - '\n') + '\n' + '\n' + ' \n' + '\n') def extract_native_libs(self, value): return ' android:extractNativeLibs="%s"' % value -- cgit v1.2.3-59-g8ed1b