Validating AndroidManifest.xml file

后端 未结 2 982
别跟我提以往
别跟我提以往 2021-01-25 13:09

I am working on a Java SE applicaiton that analyzes android applications.

Is there any schema/DTD that can be used to verify an AndroidManifest.xml? If found namespace

相关标签:
2条回答
  • 2021-01-25 13:35

    There are no DTD/schemas for Android XML, you have to relly on other tools which can do the validation, for example like Naresh explains.

    Also see "Where are the schemas for XML files on an Android project?"

    0 讨论(0)
  • 2021-01-25 13:37

    try aapt tool which comes with android-sdk. you can execute

    aapt badge command to figure out details of android manifest xml from Android apk file

    0 讨论(0)
提交回复
热议问题