कैसे एक .apk पैकेज के अंदर AndroidManifest.xml फ़ाइल पार्स करने के लिए


173

यह फ़ाइल एक द्विआधारी XML प्रारूप में प्रतीत होती है। यह प्रारूप क्या है और इसे प्रोग्रामेटिक रूप से पार्स कैसे किया जा सकता है (जैसा कि SDK में aapt डंप टूल का उपयोग करने का विरोध किया गया है)।

इस द्विआधारी प्रारूप पर यहां प्रलेखन में चर्चा नहीं की गई है

नोट : मैं इस जानकारी को Android वातावरण के बाहर, अधिमानतः जावा से एक्सेस करना चाहता हूं।


2
विशिष्ट उपयोग मामला आपके बाद क्या है? अपने स्वयं के ऐप में बहुत सी प्रकट जानकारी को android.content.pm.PackageManager.queryXXविधियों (डॉक्स: developer.android.com/reference/android/content/pm/… ) का उपयोग करके देखा जा सकता है ।
रोमन नुरिक

2
मैं Android वातावरण में नहीं हूं। मैं एक .apk फ़ाइल पढ़ना चाहता हूं, AndroidManifest.xml को निकालता हूं और इसे XML के रूप में पार्स करता हूं।
1

2
मैंने एक एपीके एक्सट्रैक्टर विकसित किया है जो एएपीटी पर निर्भर नहीं है। इसमें पार्सर शामिल है जो किसी भी एंड्रॉइड बाइनरी एक्सएमएल सामग्री को पार्स कर सकता
है-

जवाबों:


174

Android-apktool का उपयोग करें

एक एप्लिकेशन है जो एपीएक्स फाइलों को पढ़ता है और लगभग मूल रूप में एक्सएमएल को डीकोड करता है।

उपयोग:

apktool d Gmail.apk && cat Gmail/AndroidManifest.xml

अधिक जानकारी के लिए android-apktool की जाँच करें


11
अपनी apktool d Gmail.apk && cat Gmail/AndroidManifest.xml
चुस्ती

minSdkVersionऔर अन्य संस्करण मापदंडों को भी देखा जा सकता हैGmail/apktool.yml
daserge

इसे एंड्रॉइड ऐप के अंदर कैसे इस्तेमाल किया जा सकता है? और क्या इसका उपयोग इनपुटस्ट्रीम से प्रकट डेटा प्राप्त करने के लिए किया जा सकता है (उदाहरण: एपीके फ़ाइल ज़िप फ़ाइल के अंदर मौजूद है)?
Android डेवलपर

71

यह जावा विधि, जो एक एंड्रॉइड पर चलती है, दस्तावेज (जो मैं व्याख्या कर सकता हूं) एंड्रॉइड मैनफैस्ट.एक्सएमएल फाइल का बाइनरी प्रारूप .apk पैकेज में है। दूसरा कोड बॉक्स दिखाता है कि डिवाइस पर ऐप पैकेज फ़ाइल से डिकोमप्रेसएक्सएमएल को कैसे कॉल किया जाए और बाइट को कैसे लोड किया जाए। (ऐसे क्षेत्र हैं जिनके उद्देश्य मुझे समझ में नहीं आते हैं, यदि आप जानते हैं कि उनका क्या मतलब है, तो मुझे बताएं, मैं जानकारी अपडेट करूंगा।)

// decompressXML -- Parse the 'compressed' binary form of Android XML docs 
// such as for AndroidManifest.xml in .apk files
public static int endDocTag = 0x00100101;
public static int startTag =  0x00100102;
public static int endTag =    0x00100103;
public void decompressXML(byte[] xml) {
// Compressed XML file/bytes starts with 24x bytes of data,
// 9 32 bit words in little endian order (LSB first):
//   0th word is 03 00 08 00
//   3rd word SEEMS TO BE:  Offset at then of StringTable
//   4th word is: Number of strings in string table
// WARNING: Sometime I indiscriminently display or refer to word in 
//   little endian storage format, or in integer format (ie MSB first).
int numbStrings = LEW(xml, 4*4);

// StringIndexTable starts at offset 24x, an array of 32 bit LE offsets
// of the length/string data in the StringTable.
int sitOff = 0x24;  // Offset of start of StringIndexTable

// StringTable, each string is represented with a 16 bit little endian 
// character count, followed by that number of 16 bit (LE) (Unicode) chars.
int stOff = sitOff + numbStrings*4;  // StringTable follows StrIndexTable

// XMLTags, The XML tag tree starts after some unknown content after the
// StringTable.  There is some unknown data after the StringTable, scan
// forward from this point to the flag for the start of an XML start tag.
int xmlTagOff = LEW(xml, 3*4);  // Start from the offset in the 3rd word.
// Scan forward until we find the bytes: 0x02011000(x00100102 in normal int)
for (int ii=xmlTagOff; ii<xml.length-4; ii+=4) {
  if (LEW(xml, ii) == startTag) { 
    xmlTagOff = ii;  break;
  }
} // end of hack, scanning for start of first start tag

// XML tags and attributes:
// Every XML start and end tag consists of 6 32 bit words:
//   0th word: 02011000 for startTag and 03011000 for endTag 
//   1st word: a flag?, like 38000000
//   2nd word: Line of where this tag appeared in the original source file
//   3rd word: FFFFFFFF ??
//   4th word: StringIndex of NameSpace name, or FFFFFFFF for default NS
//   5th word: StringIndex of Element Name
//   (Note: 01011000 in 0th word means end of XML document, endDocTag)

// Start tags (not end tags) contain 3 more words:
//   6th word: 14001400 meaning?? 
//   7th word: Number of Attributes that follow this tag(follow word 8th)
//   8th word: 00000000 meaning??

// Attributes consist of 5 words: 
//   0th word: StringIndex of Attribute Name's Namespace, or FFFFFFFF
//   1st word: StringIndex of Attribute Name
//   2nd word: StringIndex of Attribute Value, or FFFFFFF if ResourceId used
//   3rd word: Flags?
//   4th word: str ind of attr value again, or ResourceId of value

// TMP, dump string table to tr for debugging
//tr.addSelect("strings", null);
//for (int ii=0; ii<numbStrings; ii++) {
//  // Length of string starts at StringTable plus offset in StrIndTable
//  String str = compXmlString(xml, sitOff, stOff, ii);
//  tr.add(String.valueOf(ii), str);
//}
//tr.parent();

// Step through the XML tree element tags and attributes
int off = xmlTagOff;
int indent = 0;
int startTagLineNo = -2;
while (off < xml.length) {
  int tag0 = LEW(xml, off);
  //int tag1 = LEW(xml, off+1*4);
  int lineNo = LEW(xml, off+2*4);
  //int tag3 = LEW(xml, off+3*4);
  int nameNsSi = LEW(xml, off+4*4);
  int nameSi = LEW(xml, off+5*4);

  if (tag0 == startTag) { // XML START TAG
    int tag6 = LEW(xml, off+6*4);  // Expected to be 14001400
    int numbAttrs = LEW(xml, off+7*4);  // Number of Attributes to follow
    //int tag8 = LEW(xml, off+8*4);  // Expected to be 00000000
    off += 9*4;  // Skip over 6+3 words of startTag data
    String name = compXmlString(xml, sitOff, stOff, nameSi);
    //tr.addSelect(name, null);
    startTagLineNo = lineNo;

    // Look for the Attributes
    StringBuffer sb = new StringBuffer();
    for (int ii=0; ii<numbAttrs; ii++) {
      int attrNameNsSi = LEW(xml, off);  // AttrName Namespace Str Ind, or FFFFFFFF
      int attrNameSi = LEW(xml, off+1*4);  // AttrName String Index
      int attrValueSi = LEW(xml, off+2*4); // AttrValue Str Ind, or FFFFFFFF
      int attrFlags = LEW(xml, off+3*4);  
      int attrResId = LEW(xml, off+4*4);  // AttrValue ResourceId or dup AttrValue StrInd
      off += 5*4;  // Skip over the 5 words of an attribute

      String attrName = compXmlString(xml, sitOff, stOff, attrNameSi);
      String attrValue = attrValueSi!=-1
        ? compXmlString(xml, sitOff, stOff, attrValueSi)
        : "resourceID 0x"+Integer.toHexString(attrResId);
      sb.append(" "+attrName+"=\""+attrValue+"\"");
      //tr.add(attrName, attrValue);
    }
    prtIndent(indent, "<"+name+sb+">");
    indent++;

  } else if (tag0 == endTag) { // XML END TAG
    indent--;
    off += 6*4;  // Skip over 6 words of endTag data
    String name = compXmlString(xml, sitOff, stOff, nameSi);
    prtIndent(indent, "</"+name+">  (line "+startTagLineNo+"-"+lineNo+")");
    //tr.parent();  // Step back up the NobTree

  } else if (tag0 == endDocTag) {  // END OF XML DOC TAG
    break;

  } else {
    prt("  Unrecognized tag code '"+Integer.toHexString(tag0)
      +"' at offset "+off);
    break;
  }
} // end of while loop scanning tags and attributes of XML tree
prt("    end at offset "+off);
} // end of decompressXML


public String compXmlString(byte[] xml, int sitOff, int stOff, int strInd) {
  if (strInd < 0) return null;
  int strOff = stOff + LEW(xml, sitOff+strInd*4);
  return compXmlStringAt(xml, strOff);
}


public static String spaces = "                                             ";
public void prtIndent(int indent, String str) {
  prt(spaces.substring(0, Math.min(indent*2, spaces.length()))+str);
}


// compXmlStringAt -- Return the string stored in StringTable format at
// offset strOff.  This offset points to the 16 bit string length, which 
// is followed by that number of 16 bit (Unicode) chars.
public String compXmlStringAt(byte[] arr, int strOff) {
  int strLen = arr[strOff+1]<<8&0xff00 | arr[strOff]&0xff;
  byte[] chars = new byte[strLen];
  for (int ii=0; ii<strLen; ii++) {
    chars[ii] = arr[strOff+2+ii*2];
  }
  return new String(chars);  // Hack, just use 8 byte chars
} // end of compXmlStringAt


// LEW -- Return value of a Little Endian 32 bit word from the byte array
//   at offset off.
public int LEW(byte[] arr, int off) {
  return arr[off+3]<<24&0xff000000 | arr[off+2]<<16&0xff0000
    | arr[off+1]<<8&0xff00 | arr[off]&0xFF;
} // end of LEW

यह विधि प्रसंस्करण के लिए AndroidManifest को एक बाइट [] में पढ़ती है:

public void getIntents(String path) {
  try {
    JarFile jf = new JarFile(path);
    InputStream is = jf.getInputStream(jf.getEntry("AndroidManifest.xml"));
    byte[] xml = new byte[is.available()];
    int br = is.read(xml);
    //Tree tr = TrunkFactory.newTree();
    decompressXML(xml);
    //prt("XML\n"+tr.list());
  } catch (Exception ex) {
    console.log("getIntents, ex: "+ex);  ex.printStackTrace();
  }
} // end of getIntents

अधिकांश एप्लिकेशन / सिस्टम / ऐप में संग्रहीत किए जाते हैं जो रूट के बिना पठनीय है मेरे ईवो, अन्य एप्लिकेशन / डेटा / ऐप में हैं जिन्हें मुझे देखने के लिए रूट की आवश्यकता थी। ऊपर 'पथ' का तर्क कुछ इस तरह होगा: "/ system /app/Weather.apk"


12
एक उपकरण के लिए +1 जिसे एंड्रॉइड के बाहर उपयोग किया जा सकता है। मैंने इसे एक वर्किंग कमांड-लाइन जावा टूल के रूप में लपेटा; pastebin.com/c53DuqMt देखें ।
noamtm

1
नमस्ते Ribo, मैं xml फ़ाइल को पढ़ने के लिए उपरोक्त कोड का उपयोग कर रहा हूं। अब जो मैं करना चाहता हूं वह मेरी xml फ़ाइल में है, मेरे पास एक विशेषता नाम है जिसका मान "@ string / abc" द्वारा निर्दिष्ट है और मैं इसे कुछ स्ट्रिंग में हार्ड-कोड करना चाहता हूं। अर्थात; स्ट्रिंग संदर्भ निकालें। लेकिन समस्या यह है कि मैं -1 के रूप में attrValueSi का मूल्य प्राप्त करता हूं। मैं एक मानचित्र में कुंजी जोड़ रहा हूं और मेरे पास मानचित्र में मुख्य प्रविष्टि है, मैं मूल्य को attrValueSi में रखना चाहता हूं। मैं कैसे आगे बढ़ूं? Plz मदद।
AndroidGuy

1
@ कोरी-ऑगबर्न, कंप्लेक्सस्ट्रीमिंग के कार्यान्वयन को बदल दें: `चार [] वर्ण = नया चार [strLen]; for (int ii = 0; ii <strLen; ii ++) {chars [ii] = (char) ((गिरफ्तारी [strOff + 2 + ii * 2 + 1] & 0x00FF) << 8) + (गिरफ्तारी / strOff + 2 + ii * 2] और 0x00FF)); } `
एंटोन-एम

1
क्या किसी ने हाल ही में यह कोशिश की है? हम Android Studio 3.0.1 का उपयोग कर रहे हैं और हाल ही में cmake में स्विच किया गया है, और यह अब काम नहीं करता है। यह पता लगाने की आवश्यकता थी कि क्या यह एएस या हमारी निर्माण प्रक्रिया में बदलाव था।
जीआर

1
@GREnvoy हम भी यहाँ एक समस्या का सामना कर रहे हैं। हमें 'java.lang.ArrayIndexOutOfBoundsException' अपवाद मिल रहा है
Mad

32

एंड्रॉइड एसडीके से एंड्रॉइड एसेट पैकेजिंग टूल (एप्ट) का उपयोग करने के बारे में, पायथन (या जो भी) स्क्रिप्ट में है?

Aapt ( http://elinux.org/Android_aapt ) के माध्यम से , वास्तव में, आप .apk पैकेज के बारे में और इसके AndroidManifest.xml फ़ाइल के बारे में जानकारी प्राप्त कर सकते हैं । विशेष रूप से, आप 'डंप' उप-कमांड के माध्यम से एक .apk पैकेज के व्यक्तिगत तत्वों के मूल्यों को निकाल सकते हैं । उदाहरण के लिए, आप इस तरह से .apk पैकेज के अंदर AndroidManifest.xml फ़ाइल में उपयोगकर्ता-अनुमतियाँ निकाल सकते हैं :

$ aapt dump permissions package.apk

जहाँ package.apk आपका .apk पैकेज है।

इसके अलावा, आप आउटपुट साफ़ करने के लिए यूनिक्स पाइप कमांड का उपयोग कर सकते हैं। उदाहरण के लिए:

$ aapt dump permissions package.apk | sed 1d | awk '{ print $NF }'

यहाँ एक पायथन लिपि है जो कि प्रोग्रामेटिक रूप से है:

import os
import subprocess

#Current directory and file name:
curpath = os.path.dirname( os.path.realpath(__file__) )
filepath = os.path.join(curpath, "package.apk")

#Extract the AndroidManifest.xml permissions:
command = "aapt dump permissions " + filepath + " | sed 1d | awk '{ print $NF }'"
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=None, shell=True)
permissions = process.communicate()[0]

print permissions

इसी तरह से आप AndroidManifest.xml की अन्य जानकारी (जैसे पैकेज , ऐप का नाम , आदि ...) निकाल सकते हैं :

#Extract the APK package info:
shellcommand = "aapt dump badging " + filepath
process = subprocess.Popen(shellcommand, stdout=subprocess.PIPE, stderr=None, shell=True)
apkInfo = process.communicate()[0].splitlines()

for info in apkInfo:
    #Package info:
    if string.find(info, "package:", 0) != -1:
        print "App Package: " + findBetween(info, "name='", "'")
        print "App Version: " + findBetween(info, "versionName='", "'")
        continue

    #App name:
    if string.find(info, "application:", 0) != -1:
        print "App Name: " + findBetween(info, "label='", "'")
        continue


def findBetween(s, prefix, suffix):
    try:
        start = s.index(prefix) + len(prefix)
        end = s.index(suffix, start)
        return s[start:end]
    except ValueError:
        return ""

यदि इसके बजाय आप पूरे AndroidManifest XML ट्री को पार्स करना चाहते हैं, तो आप उसी तरह से xmltree का उपयोग करके कर सकते हैं :

aapt dump xmltree package.apk AndroidManifest.xml

पहले की तरह अजगर का उपयोग:

#Extract the AndroidManifest XML tree:
shellcommand = "aapt dump xmltree " + filepath + " AndroidManifest.xml"
process = subprocess.Popen(shellcommand, stdout=subprocess.PIPE, stderr=None, shell=True)
xmlTree = process.communicate()[0]

print "Number of Activities: " + str(xmlTree.count("activity"))
print "Number of Services: " + str(xmlTree.count("service"))
print "Number of BroadcastReceivers: " + str(xmlTree.count("receiver"))

क्या यह उपकरण हमेशा Android Roms पर मौजूद है? क्या यह ऐसा कुछ है जो हमेशा बनाया गया है?
एंड्रॉयड डेवलपर

अगर आप मुझसे पूछें तो बेहतर होगा। :) मुझे apktool और AXMLPrinter2 के साथ समस्याएं मिली हैं: कभी-कभी वे अपवादों को फेंक देते हैं, आदि हर बार काम करते हैं और अधिक बहुमुखी होते हैं। यह उल्लेख करने के लिए नहीं कि यह आधिकारिक उपकरण है।
एल्बस डंबलडोर

16

आप android-random प्रोजेक्ट के भीतर कुछ समय पहले विकसित axml2xml.pl टूल का उपयोग कर सकते हैं । यह बाइनरी एक से टेक्स्ट मेनिफेस्ट फाइल (AndroidManifest.xml) उत्पन्न करेगा।

मैं " टेक्स्टुअल " कह रहा हूं और " मूल " नहीं क्योंकि कई रिवर्स-इंजीनियरिंग टूल की तरह यह एक परिपूर्ण नहीं है और परिणाम पूरा नहीं होगा । मुझे लगता है कि या तो यह कभी भी पूर्ण नहीं था या केवल आगे-संगत नहीं था (नए बाइनरी एन्कोडिंग योजना के साथ)। जो भी कारण है, axml2xml.pl उपकरण सभी विशेषता मानों को सही ढंग से निकालने में सक्षम नहीं होगा। ऐसी विशेषताएँ minSdkVersion, targetSdkVersion और मूल रूप से वे सभी विशेषताएँ हैं जो संसाधन संदर्भित कर रही हैं (जैसे तार, चिह्न, आदि), अर्थात केवल वर्ग नाम (गतिविधियों, सेवाओं, आदि) को सही तरीके से निकाला जाता है।

हालाँकि, आप अभी भी मूल Android ऐप फ़ाइल ( .apk ) पर aapt उपकरण चलाकर इन गुम जानकारी को पा सकते हैं।

aapt l -a <someapp.apk>


1
साभार @ शोन्जिला मुझे पैकेज का नाम और संस्करण कोड जानकारी चाहिए, aapt काम करता है। जैसा कि मैं LAMP के साथ काम कर रहा हूं, मैं PHP में aapt कमांड चलाता हूं और PHP के साथ आउटपुट को प्रोसेस करता हूं।
3

कोई भी जावा / कोटलिन समाधान जो एंड्रॉइड के लिए काम कर सकता है?
एंड्रॉयड डेवलपर

12

नवीनतम एसडीके-टूल्स के साथ, आप अब एपीके के AndroidManifest.xml (साथ ही साथ संसाधन जैसे अन्य भागों) को प्रिंट करने के लिए एपीकेनाइज़र नामक टूल का उपयोग कर सकते हैं।

[android sdk]/tools/bin/apkanalyzer manifest print [app.apk]

apkanalyzer


आपको बहुत - बहुत धन्यवाद! मैं इसे दिनों के लिए देख रहा था, और कुछ तीसरा पक्ष समाधान नहीं चाहता था जो कि अजगर या पर्ल या जावा जार या आपके पास क्या है।
जेरेमी

यह वर्तमान उपकरण परिदृश्य को देखते हुए सबसे अच्छा उत्तर है।
greg7gkb

11

निम्नलिखित WPF प्रोजेक्ट की जाँच करें जो गुणों को सही ढंग से डिकोड करता है।


1
इसके लिए +1, धन्यवाद !!! सी # डेवलपर्स के लिए, मैं निश्चित रूप से यह सलाह देता हूं। मुझे बहुत समय बचाया =) यह मुझे थोड़ी देर के लिए वापस आयोजित किया क्योंकि मुझे संस्करण संख्या और पैकेज नाम को पुनः प्राप्त करने के लिए "एप्ट" को चलाना था (जो कि यह संभव नहीं है कि मेरा परिदृश्य वेब वातावरण में है और उपयोगकर्ता को दोनों को पुनः प्राप्त करने के बाद प्रतिक्रिया की आवश्यकता है पैकेज का नाम और संस्करण संख्या)।
जोनाथन लायनो

आप वास्तव में प्रेजेंटेशनकोर निर्भरता को आसानी से हटा सकते हैं, इसका उपयोग केवल इसके रंग वर्ग के लिए किया जाता है। आप या तो अपना स्वयं का बना सकते हैं, या System.Drawing का उपयोग कर सकते हैं।
एलेक्सिस

क्या इस तरह एक समाधान है, लेकिन एक है जो एंड्रॉइड ऐप के अंदर काम करता है?
एंड्रॉयड डेवलपर

11

एपीके-पार्सर, https://github.com/caoqianli/apk-parser , java के लिए एक हल्का इम्प्लांट, जिसमें aapt या अन्य बाइनरी के लिए कोई निर्भरता नहीं है, पार्स बाइनरी xml फ़ाइलों के लिए अच्छा है, और अन्य apk infos।

ApkParser apkParser = new ApkParser(new File(filePath));
// set a locale to translate resource tag into specific strings in language the locale specified, you set locale to Locale.ENGLISH then get apk title 'WeChat' instead of '@string/app_name' for example
apkParser.setPreferredLocale(locale);

String xml = apkParser.getManifestXml();
System.out.println(xml);

String xml2 = apkParser.transBinaryXml(xmlPathInApk);
System.out.println(xml2);

ApkMeta apkMeta = apkParser.getApkMeta();
System.out.println(apkMeta);

Set<Locale> locales = apkParser.getLocales();
for (Locale l : locales) {
    System.out.println(l);
}
apkParser.close();

टेस्ट नहीं हुआ। यह काम करना चाहिए, लेकिन कोई व्यक्ति एंड्रॉइड एल के साथ मुद्दों की रिपोर्ट करता है
लियू डोंग

समझा। क्या आप इस तरह से इरादे-फ़िल्टर प्राप्त कर सकते हैं?
Android डेवलपर

आशय-फ़िल्टर प्रकट एक्सएमएल फ़ाइल को पार्स करके प्राप्त किया जा सकता है, अब कोई प्रत्यक्ष विधि नहीं।
लियू डोंग

"शुद्ध जावा", एक गहरा दुर्भाग्यपूर्ण वाक्यांश
ग्लेन मेनार्ड

7

यदि आपका पायथन में है या एंड्रोगार्ड का उपयोग करता है , तो एंड्रॉएडग्रेस एंड्रॉएडमेल सुविधा आपके लिए यह रूपांतरण करेगी। इस ब्लॉग पोस्ट में यह सुविधा विस्तृत है , यहाँ अतिरिक्त प्रलेखन और यहाँ स्रोत है

उपयोग:

$ ./androaxml.py -h
Usage: androaxml.py [options]

Options:
-h, --help            show this help message and exit
-i INPUT, --input=INPUT
                      filename input (APK or android's binary xml)
-o OUTPUT, --output=OUTPUT
                      filename output of the xml
-v, --version         version of the API

$ ./androaxml.py -i yourfile.apk -o output.xml
$ ./androaxml.py -i AndroidManifest.xml -o output.xml

6

यदि यह उपयोगी है, तो यहाँ रिबो द्वारा पोस्ट किए गए जावा स्निपेट का C ++ संस्करण है:

struct decompressXML
{
    // decompressXML -- Parse the 'compressed' binary form of Android XML docs 
    // such as for AndroidManifest.xml in .apk files
    enum
    {
        endDocTag = 0x00100101,
        startTag =  0x00100102,
        endTag =    0x00100103
    };

    decompressXML(const BYTE* xml, int cb) {
    // Compressed XML file/bytes starts with 24x bytes of data,
    // 9 32 bit words in little endian order (LSB first):
    //   0th word is 03 00 08 00
    //   3rd word SEEMS TO BE:  Offset at then of StringTable
    //   4th word is: Number of strings in string table
    // WARNING: Sometime I indiscriminently display or refer to word in 
    //   little endian storage format, or in integer format (ie MSB first).
    int numbStrings = LEW(xml, cb, 4*4);

    // StringIndexTable starts at offset 24x, an array of 32 bit LE offsets
    // of the length/string data in the StringTable.
    int sitOff = 0x24;  // Offset of start of StringIndexTable

    // StringTable, each string is represented with a 16 bit little endian 
    // character count, followed by that number of 16 bit (LE) (Unicode) chars.
    int stOff = sitOff + numbStrings*4;  // StringTable follows StrIndexTable

    // XMLTags, The XML tag tree starts after some unknown content after the
    // StringTable.  There is some unknown data after the StringTable, scan
    // forward from this point to the flag for the start of an XML start tag.
    int xmlTagOff = LEW(xml, cb, 3*4);  // Start from the offset in the 3rd word.
    // Scan forward until we find the bytes: 0x02011000(x00100102 in normal int)
    for (int ii=xmlTagOff; ii<cb-4; ii+=4) {
      if (LEW(xml, cb, ii) == startTag) { 
        xmlTagOff = ii;  break;
      }
    } // end of hack, scanning for start of first start tag

    // XML tags and attributes:
    // Every XML start and end tag consists of 6 32 bit words:
    //   0th word: 02011000 for startTag and 03011000 for endTag 
    //   1st word: a flag?, like 38000000
    //   2nd word: Line of where this tag appeared in the original source file
    //   3rd word: FFFFFFFF ??
    //   4th word: StringIndex of NameSpace name, or FFFFFFFF for default NS
    //   5th word: StringIndex of Element Name
    //   (Note: 01011000 in 0th word means end of XML document, endDocTag)

    // Start tags (not end tags) contain 3 more words:
    //   6th word: 14001400 meaning?? 
    //   7th word: Number of Attributes that follow this tag(follow word 8th)
    //   8th word: 00000000 meaning??

    // Attributes consist of 5 words: 
    //   0th word: StringIndex of Attribute Name's Namespace, or FFFFFFFF
    //   1st word: StringIndex of Attribute Name
    //   2nd word: StringIndex of Attribute Value, or FFFFFFF if ResourceId used
    //   3rd word: Flags?
    //   4th word: str ind of attr value again, or ResourceId of value

    // TMP, dump string table to tr for debugging
    //tr.addSelect("strings", null);
    //for (int ii=0; ii<numbStrings; ii++) {
    //  // Length of string starts at StringTable plus offset in StrIndTable
    //  String str = compXmlString(xml, sitOff, stOff, ii);
    //  tr.add(String.valueOf(ii), str);
    //}
    //tr.parent();

    // Step through the XML tree element tags and attributes
    int off = xmlTagOff;
    int indent = 0;
    int startTagLineNo = -2;
    while (off < cb) {
      int tag0 = LEW(xml, cb, off);
      //int tag1 = LEW(xml, off+1*4);
      int lineNo = LEW(xml, cb, off+2*4);
      //int tag3 = LEW(xml, off+3*4);
      int nameNsSi = LEW(xml, cb, off+4*4);
      int nameSi = LEW(xml, cb, off+5*4);

      if (tag0 == startTag) { // XML START TAG
        int tag6 = LEW(xml, cb, off+6*4);  // Expected to be 14001400
        int numbAttrs = LEW(xml, cb, off+7*4);  // Number of Attributes to follow
        //int tag8 = LEW(xml, off+8*4);  // Expected to be 00000000
        off += 9*4;  // Skip over 6+3 words of startTag data
        std::string name = compXmlString(xml, cb, sitOff, stOff, nameSi);
        //tr.addSelect(name, null);
        startTagLineNo = lineNo;

        // Look for the Attributes
        std::string sb;
        for (int ii=0; ii<numbAttrs; ii++) {
          int attrNameNsSi = LEW(xml, cb, off);  // AttrName Namespace Str Ind, or FFFFFFFF
          int attrNameSi = LEW(xml, cb, off+1*4);  // AttrName String Index
          int attrValueSi = LEW(xml, cb, off+2*4); // AttrValue Str Ind, or FFFFFFFF
          int attrFlags = LEW(xml, cb, off+3*4);  
          int attrResId = LEW(xml, cb, off+4*4);  // AttrValue ResourceId or dup AttrValue StrInd
          off += 5*4;  // Skip over the 5 words of an attribute

          std::string attrName = compXmlString(xml, cb, sitOff, stOff, attrNameSi);
          std::string attrValue = attrValueSi!=-1
            ? compXmlString(xml, cb, sitOff, stOff, attrValueSi)
            : "resourceID 0x"+toHexString(attrResId);
          sb.append(" "+attrName+"=\""+attrValue+"\"");
          //tr.add(attrName, attrValue);
        }
        prtIndent(indent, "<"+name+sb+">");
        indent++;

      } else if (tag0 == endTag) { // XML END TAG
        indent--;
        off += 6*4;  // Skip over 6 words of endTag data
        std::string name = compXmlString(xml, cb, sitOff, stOff, nameSi);
        prtIndent(indent, "</"+name+">  (line "+toIntString(startTagLineNo)+"-"+toIntString(lineNo)+")");
        //tr.parent();  // Step back up the NobTree

      } else if (tag0 == endDocTag) {  // END OF XML DOC TAG
        break;

      } else {
        prt("  Unrecognized tag code '"+toHexString(tag0)
          +"' at offset "+toIntString(off));
        break;
      }
    } // end of while loop scanning tags and attributes of XML tree
    prt("    end at offset "+off);
    } // end of decompressXML


    std::string compXmlString(const BYTE* xml, int cb, int sitOff, int stOff, int strInd) {
      if (strInd < 0) return std::string("");
      int strOff = stOff + LEW(xml, cb, sitOff+strInd*4);
      return compXmlStringAt(xml, cb, strOff);
    }

    void prt(std::string str)
    {
        printf("%s", str.c_str());
    }
    void prtIndent(int indent, std::string str) {
        char spaces[46];
        memset(spaces, ' ', sizeof(spaces));
        spaces[min(indent*2,  sizeof(spaces) - 1)] = 0;
        prt(spaces);
        prt(str);
        prt("\n");
    }


    // compXmlStringAt -- Return the string stored in StringTable format at
    // offset strOff.  This offset points to the 16 bit string length, which 
    // is followed by that number of 16 bit (Unicode) chars.
    std::string compXmlStringAt(const BYTE* arr, int cb, int strOff) {
        if (cb < strOff + 2) return std::string("");
      int strLen = arr[strOff+1]<<8&0xff00 | arr[strOff]&0xff;
      char* chars = new char[strLen + 1];
      chars[strLen] = 0;
      for (int ii=0; ii<strLen; ii++) {
          if (cb < strOff + 2 + ii * 2)
          {
              chars[ii] = 0;
              break;
          }
        chars[ii] = arr[strOff+2+ii*2];
      }
      std::string str(chars);
      free(chars);
      return str;
    } // end of compXmlStringAt


    // LEW -- Return value of a Little Endian 32 bit word from the byte array
    //   at offset off.
    int LEW(const BYTE* arr, int cb, int off) {
      return (cb > off + 3) ? ( arr[off+3]<<24&0xff000000 | arr[off+2]<<16&0xff0000
          | arr[off+1]<<8&0xff00 | arr[off]&0xFF ) : 0;
    } // end of LEW

    std::string toHexString(DWORD attrResId)
    {
        char ch[20];
        sprintf_s(ch, 20, "%lx", attrResId);
        return std::string(ch);
    }
    std::string toIntString(int i)
    {
        char ch[20];
        sprintf_s(ch, 20, "%ld", i);
        return std::string(ch);
    }
};

दो बग: CompXMLStringAt में: charsनए चार [] द्वारा आवंटित किया गया है, लेकिन फिर सही के बजाय फ्री होल्ड करेंगे delete[] chars;। DecompressXML ctor के अंत में यह अवश्य होना चाहिए prt(" end at offset "+toIntString(off));, अन्यथा सूचक अंकगणितीय का उपयोग किया जाता है ...
smilingthax

3

संदर्भ के लिए यहाँ मेरे Ribo कोड का संस्करण है। मुख्य अंतर यह है कि decompressXML () सीधे एक स्ट्रिंग लौटाता है, जो मेरे उद्देश्यों के लिए एक अधिक उपयुक्त उपयोग था।

नोट: Ribo समाधान का उपयोग करने में मेरा एकमात्र उद्देश्य Manifest XML फ़ाइल से .APK फ़ाइल के प्रकाशित संस्करण को प्राप्त करना था, और मैं इस बात की पुष्टि करता हूं कि इस उद्देश्य के लिए यह खूबसूरती से काम करता है।

EDIT [2013-03-16]: यह खूबसूरती से काम करता है यदि संस्करण को सादे पाठ के रूप में सेट किया गया है, लेकिन अगर यह एक संसाधन XML को संदर्भित करने के लिए सेट है, तो यह उदाहरण के लिए 'संसाधन 0x1' के रूप में दिखाई देगा। इस विशेष मामले में, आपको संभवतः इस समाधान को किसी अन्य समाधान से जोड़ना होगा जो उचित स्ट्रिंग संसाधन संदर्भ प्राप्त करेगा।

/**
 * Binary XML doc ending Tag
 */
public static int endDocTag = 0x00100101;

/**
 * Binary XML start Tag
 */
public static int startTag =  0x00100102;

/**
 * Binary XML end Tag
 */
public static int endTag =    0x00100103;


/**
 * Reference var for spacing
 * Used in prtIndent()
 */
public static String spaces = "                                             ";


/**
 * Parse the 'compressed' binary form of Android XML docs 
 * such as for AndroidManifest.xml in .apk files
 * Source: http://stackoverflow.com/questions/2097813/how-to-parse-the-androidmanifest-xml-file-inside-an-apk-package/4761689#4761689
 * 
 * @param xml Encoded XML content to decompress
 */
public static String decompressXML(byte[] xml) {

    StringBuilder resultXml = new StringBuilder();

    // Compressed XML file/bytes starts with 24x bytes of data,
    // 9 32 bit words in little endian order (LSB first):
    //   0th word is 03 00 08 00
    //   3rd word SEEMS TO BE:  Offset at then of StringTable
    //   4th word is: Number of strings in string table
    // WARNING: Sometime I indiscriminently display or refer to word in 
    //   little endian storage format, or in integer format (ie MSB first).
    int numbStrings = LEW(xml, 4*4);

    // StringIndexTable starts at offset 24x, an array of 32 bit LE offsets
    // of the length/string data in the StringTable.
    int sitOff = 0x24;  // Offset of start of StringIndexTable

    // StringTable, each string is represented with a 16 bit little endian 
    // character count, followed by that number of 16 bit (LE) (Unicode) chars.
    int stOff = sitOff + numbStrings*4;  // StringTable follows StrIndexTable

    // XMLTags, The XML tag tree starts after some unknown content after the
    // StringTable.  There is some unknown data after the StringTable, scan
    // forward from this point to the flag for the start of an XML start tag.
    int xmlTagOff = LEW(xml, 3*4);  // Start from the offset in the 3rd word.
    // Scan forward until we find the bytes: 0x02011000(x00100102 in normal int)
    for (int ii=xmlTagOff; ii<xml.length-4; ii+=4) {
      if (LEW(xml, ii) == startTag) { 
        xmlTagOff = ii;  break;
      }
    } // end of hack, scanning for start of first start tag

    // XML tags and attributes:
    // Every XML start and end tag consists of 6 32 bit words:
    //   0th word: 02011000 for startTag and 03011000 for endTag 
    //   1st word: a flag?, like 38000000
    //   2nd word: Line of where this tag appeared in the original source file
    //   3rd word: FFFFFFFF ??
    //   4th word: StringIndex of NameSpace name, or FFFFFFFF for default NS
    //   5th word: StringIndex of Element Name
    //   (Note: 01011000 in 0th word means end of XML document, endDocTag)

    // Start tags (not end tags) contain 3 more words:
    //   6th word: 14001400 meaning?? 
    //   7th word: Number of Attributes that follow this tag(follow word 8th)
    //   8th word: 00000000 meaning??

    // Attributes consist of 5 words: 
    //   0th word: StringIndex of Attribute Name's Namespace, or FFFFFFFF
    //   1st word: StringIndex of Attribute Name
    //   2nd word: StringIndex of Attribute Value, or FFFFFFF if ResourceId used
    //   3rd word: Flags?
    //   4th word: str ind of attr value again, or ResourceId of value

    // TMP, dump string table to tr for debugging
    //tr.addSelect("strings", null);
    //for (int ii=0; ii<numbStrings; ii++) {
    //  // Length of string starts at StringTable plus offset in StrIndTable
    //  String str = compXmlString(xml, sitOff, stOff, ii);
    //  tr.add(String.valueOf(ii), str);
    //}
    //tr.parent();

    // Step through the XML tree element tags and attributes
    int off = xmlTagOff;
    int indent = 0;
    int startTagLineNo = -2;
    while (off < xml.length) {
      int tag0 = LEW(xml, off);
      //int tag1 = LEW(xml, off+1*4);
      int lineNo = LEW(xml, off+2*4);
      //int tag3 = LEW(xml, off+3*4);
      int nameNsSi = LEW(xml, off+4*4);
      int nameSi = LEW(xml, off+5*4);

      if (tag0 == startTag) { // XML START TAG
        int tag6 = LEW(xml, off+6*4);  // Expected to be 14001400
        int numbAttrs = LEW(xml, off+7*4);  // Number of Attributes to follow
        //int tag8 = LEW(xml, off+8*4);  // Expected to be 00000000
        off += 9*4;  // Skip over 6+3 words of startTag data
        String name = compXmlString(xml, sitOff, stOff, nameSi);
        //tr.addSelect(name, null);
        startTagLineNo = lineNo;

        // Look for the Attributes
        StringBuffer sb = new StringBuffer();
        for (int ii=0; ii<numbAttrs; ii++) {
          int attrNameNsSi = LEW(xml, off);  // AttrName Namespace Str Ind, or FFFFFFFF
          int attrNameSi = LEW(xml, off+1*4);  // AttrName String Index
          int attrValueSi = LEW(xml, off+2*4); // AttrValue Str Ind, or FFFFFFFF
          int attrFlags = LEW(xml, off+3*4);  
          int attrResId = LEW(xml, off+4*4);  // AttrValue ResourceId or dup AttrValue StrInd
          off += 5*4;  // Skip over the 5 words of an attribute

          String attrName = compXmlString(xml, sitOff, stOff, attrNameSi);
          String attrValue = attrValueSi!=-1
            ? compXmlString(xml, sitOff, stOff, attrValueSi)
            : "resourceID 0x"+Integer.toHexString(attrResId);
          sb.append(" "+attrName+"=\""+attrValue+"\"");
          //tr.add(attrName, attrValue);
        }
        resultXml.append(prtIndent(indent, "<"+name+sb+">"));
        indent++;

      } else if (tag0 == endTag) { // XML END TAG
        indent--;
        off += 6*4;  // Skip over 6 words of endTag data
        String name = compXmlString(xml, sitOff, stOff, nameSi);
        resultXml.append(prtIndent(indent, "</"+name+">  (line "+startTagLineNo+"-"+lineNo+")"));
        //tr.parent();  // Step back up the NobTree

      } else if (tag0 == endDocTag) {  // END OF XML DOC TAG
        break;

      } else {
          Log.e(TAG, "  Unrecognized tag code '"+Integer.toHexString(tag0)
          +"' at offset "+off);
        break;
      }
    } // end of while loop scanning tags and attributes of XML tree
    Log.i(TAG, "    end at offset "+off);

    return resultXml.toString();
} // end of decompressXML


/**
 * Tool Method for decompressXML();
 * Compute binary XML to its string format 
 * Source: Source: http://stackoverflow.com/questions/2097813/how-to-parse-the-androidmanifest-xml-file-inside-an-apk-package/4761689#4761689
 * 
 * @param xml Binary-formatted XML
 * @param sitOff
 * @param stOff
 * @param strInd
 * @return String-formatted XML
 */
public static String compXmlString(byte[] xml, int sitOff, int stOff, int strInd) {
  if (strInd < 0) return null;
  int strOff = stOff + LEW(xml, sitOff+strInd*4);
  return compXmlStringAt(xml, strOff);
}


/**
 * Tool Method for decompressXML(); 
 * Apply indentation
 * 
 * @param indent Indentation level
 * @param str String to indent
 * @return Indented string
 */
public static String prtIndent(int indent, String str) {

    return (spaces.substring(0, Math.min(indent*2, spaces.length()))+str);
}


/** 
 * Tool method for decompressXML()
 * Return the string stored in StringTable format at
 * offset strOff.  This offset points to the 16 bit string length, which 
 * is followed by that number of 16 bit (Unicode) chars.
 * 
 * @param arr StringTable array
 * @param strOff Offset to get string from
 * @return String from StringTable at offset strOff
 * 
 */
public static String compXmlStringAt(byte[] arr, int strOff) {
  int strLen = arr[strOff+1]<<8&0xff00 | arr[strOff]&0xff;
  byte[] chars = new byte[strLen];
  for (int ii=0; ii<strLen; ii++) {
    chars[ii] = arr[strOff+2+ii*2];
  }
  return new String(chars);  // Hack, just use 8 byte chars
} // end of compXmlStringAt


/** 
 * Return value of a Little Endian 32 bit word from the byte array
 *   at offset off.
 * 
 * @param arr Byte array with 32 bit word
 * @param off Offset to get word from
 * @return Value of Little Endian 32 bit word specified
 */
public static int LEW(byte[] arr, int off) {
  return arr[off+3]<<24&0xff000000 | arr[off+2]<<16&0xff0000
    | arr[off+1]<<8&0xff00 | arr[off]&0xFF;
} // end of LEW

आशा है कि यह अन्य लोगों की भी मदद कर सकता है।


यदि एपीके की मैनिफ़ेस्ट फ़ाइल संस्करण के लिए स्ट्रिंग संसाधन xml को संदर्भित करती है, तो आपका यह कोड विफल हो जाता है। मेरे मामले में मैंने github.com/stephanenicolas/RoboDemo/robodemo-sample-1.0.1.apk/ ... से एक एपीके डाउनलोड किया और उस पर अपना कोड चलाया। प्रिंटिंग संस्करणों के बजाय, यह संसाधन आईडी प्रिंट करता है। यानी "रिसोर्सआईडी 0x1" जो बेकार है और उस रिसोर्स आइडी को खोजने के लिए हमें एक और प्रोग्राम की जरूरत है, जो उस रिसोर्स फाइल का पता लगा सके और उसे अपघटित कर सके।
याह्या अरशद

यह कुल समझ में आता है। सच कहूं तो, यह मेरे लिए नहीं था कि संस्करण को सादे पाठ के बजाय संसाधन XML में संदर्भित किया जा सकता था। मैं अपनी पोस्ट को उस विशेषता के लिए कवर करूंगा।
मथिउ

क्या आप मुझे बता सकते हैं कि मैं कैसे String.xml को डीकोड कर सकता हूं और उस विशेष संसाधन आईडी का पता लगा सकता हूं। मैं इसे अपने विश्वविद्यालय परियोजना में इसका उपयोग करना चाहता हूं। बिल्ड प्रबंधन प्रणाली बनाने के लिए
याह्या अरशद

@Cheeta ईमानदार होने के लिए मुझे आप से ज्यादा कोई नहीं जानता। मैंने बस Ribo का कोड लिया और अपनी विशिष्ट आवश्यकताओं के लिए इसे संशोधित किया, फिर किसी और को लाभ होने की स्थिति में इसे साझा किया। मेरा सुझाव है कि एक .APK से स्ट्रिंग रिसोर्सेस को प्राप्त करने के लिए विशिष्ट समाधान की तलाश करें, और जो मैंने यहां प्रकाशित किया है, उसके साथ इसे जोड़े। सौभाग्य!
मैथ्यू

3

एंड्रॉइड स्टूडियो 2.2 में आप सीधे एपीके का विश्लेषण कर सकते हैं। गोटो बिल्ड-विश्लेषण APK। Apk का चयन करें, androidmanifest.xml पर नेविगेट करें। आप androidmanifest का विवरण देख सकते हैं।


3

@ मैथ्यू कोटलीन संस्करण इस प्रकार है:

fun main(args : Array<String>) {
    val fileName = "app.apk"
    ZipFile(fileName).use { zip ->
        zip.entries().asSequence().forEach { entry ->
            if(entry.name == "AndroidManifest.xml") {
                zip.getInputStream(entry).use { input ->
                    val xml = decompressXML(input.readBytes())
                    //TODO: parse the XML
                    println(xml)

                }
            }
        }
    }
}

    /**
     * Binary XML doc ending Tag
     */
    var endDocTag = 0x00100101

    /**
     * Binary XML start Tag
     */
    var startTag = 0x00100102

    /**
     * Binary XML end Tag
     */
    var endTag = 0x00100103


    /**
     * Reference var for spacing
     * Used in prtIndent()
     */
    var spaces = "                                             "


    /**
     * Parse the 'compressed' binary form of Android XML docs
     * such as for AndroidManifest.xml in .apk files
     * Source: http://stackoverflow.com/questions/2097813/how-to-parse-the-androidmanifest-xml-file-inside-an-apk-package/4761689#4761689
     *
     * @param xml Encoded XML content to decompress
     */
    fun decompressXML(xml: ByteArray): String {

        val resultXml = StringBuilder()

        // Compressed XML file/bytes starts with 24x bytes of data,
        // 9 32 bit words in little endian order (LSB first):
        //   0th word is 03 00 08 00
        //   3rd word SEEMS TO BE:  Offset at then of StringTable
        //   4th word is: Number of strings in string table
        // WARNING: Sometime I indiscriminently display or refer to word in
        //   little endian storage format, or in integer format (ie MSB first).
        val numbStrings = LEW(xml, 4 * 4)

        // StringIndexTable starts at offset 24x, an array of 32 bit LE offsets
        // of the length/string data in the StringTable.
        val sitOff = 0x24  // Offset of start of StringIndexTable

        // StringTable, each string is represented with a 16 bit little endian
        // character count, followed by that number of 16 bit (LE) (Unicode) chars.
        val stOff = sitOff + numbStrings * 4  // StringTable follows StrIndexTable

        // XMLTags, The XML tag tree starts after some unknown content after the
        // StringTable.  There is some unknown data after the StringTable, scan
        // forward from this point to the flag for the start of an XML start tag.
        var xmlTagOff = LEW(xml, 3 * 4)  // Start from the offset in the 3rd word.
        // Scan forward until we find the bytes: 0x02011000(x00100102 in normal int)
        run {
            var ii = xmlTagOff
            while (ii < xml.size - 4) {
                if (LEW(xml, ii) == startTag) {
                    xmlTagOff = ii
                    break
                }
                ii += 4
            }
        } // end of hack, scanning for start of first start tag

        // XML tags and attributes:
        // Every XML start and end tag consists of 6 32 bit words:
        //   0th word: 02011000 for startTag and 03011000 for endTag
        //   1st word: a flag?, like 38000000
        //   2nd word: Line of where this tag appeared in the original source file
        //   3rd word: FFFFFFFF ??
        //   4th word: StringIndex of NameSpace name, or FFFFFFFF for default NS
        //   5th word: StringIndex of Element Name
        //   (Note: 01011000 in 0th word means end of XML document, endDocTag)

        // Start tags (not end tags) contain 3 more words:
        //   6th word: 14001400 meaning??
        //   7th word: Number of Attributes that follow this tag(follow word 8th)
        //   8th word: 00000000 meaning??

        // Attributes consist of 5 words:
        //   0th word: StringIndex of Attribute Name's Namespace, or FFFFFFFF
        //   1st word: StringIndex of Attribute Name
        //   2nd word: StringIndex of Attribute Value, or FFFFFFF if ResourceId used
        //   3rd word: Flags?
        //   4th word: str ind of attr value again, or ResourceId of value

        // TMP, dump string table to tr for debugging
        //tr.addSelect("strings", null);
        //for (int ii=0; ii<numbStrings; ii++) {
        //  // Length of string starts at StringTable plus offset in StrIndTable
        //  String str = compXmlString(xml, sitOff, stOff, ii);
        //  tr.add(String.valueOf(ii), str);
        //}
        //tr.parent();

        // Step through the XML tree element tags and attributes
        var off = xmlTagOff
        var indent = 0
        var startTagLineNo = -2
        while (off < xml.size) {
            val tag0 = LEW(xml, off)
            //int tag1 = LEW(xml, off+1*4);
            val lineNo = LEW(xml, off + 2 * 4)
            //int tag3 = LEW(xml, off+3*4);
            val nameNsSi = LEW(xml, off + 4 * 4)
            val nameSi = LEW(xml, off + 5 * 4)

            if (tag0 == startTag) { // XML START TAG
                val tag6 = LEW(xml, off + 6 * 4)  // Expected to be 14001400
                val numbAttrs = LEW(xml, off + 7 * 4)  // Number of Attributes to follow
                //int tag8 = LEW(xml, off+8*4);  // Expected to be 00000000
                off += 9 * 4  // Skip over 6+3 words of startTag data
                val name = compXmlString(xml, sitOff, stOff, nameSi)
                //tr.addSelect(name, null);
                startTagLineNo = lineNo

                // Look for the Attributes
                val sb = StringBuffer()
                for (ii in 0 until numbAttrs) {
                    val attrNameNsSi = LEW(xml, off)  // AttrName Namespace Str Ind, or FFFFFFFF
                    val attrNameSi = LEW(xml, off + 1 * 4)  // AttrName String Index
                    val attrValueSi = LEW(xml, off + 2 * 4) // AttrValue Str Ind, or FFFFFFFF
                    val attrFlags = LEW(xml, off + 3 * 4)
                    val attrResId = LEW(xml, off + 4 * 4)  // AttrValue ResourceId or dup AttrValue StrInd
                    off += 5 * 4  // Skip over the 5 words of an attribute

                    val attrName = compXmlString(xml, sitOff, stOff, attrNameSi)
                    val attrValue = if (attrValueSi != -1)
                        compXmlString(xml, sitOff, stOff, attrValueSi)
                    else
                        "resourceID 0x" + Integer.toHexString(attrResId)
                    sb.append(" $attrName=\"$attrValue\"")
                    //tr.add(attrName, attrValue);
                }
                resultXml.append(prtIndent(indent, "<$name$sb>"))
                indent++

            } else if (tag0 == endTag) { // XML END TAG
                indent--
                off += 6 * 4  // Skip over 6 words of endTag data
                val name = compXmlString(xml, sitOff, stOff, nameSi)
                resultXml.append(prtIndent(indent, "</$name>  (line $startTagLineNo-$lineNo)"))
                //tr.parent();  // Step back up the NobTree

            } else if (tag0 == endDocTag) {  // END OF XML DOC TAG
                break

            } else {
                        println("  Unrecognized tag code '" + Integer.toHexString(tag0)
                            + "' at offset " + off
                )
                break
            }
        } // end of while loop scanning tags and attributes of XML tree
        println("    end at offset $off")

        return resultXml.toString()
    } // end of decompressXML


    /**
     * Tool Method for decompressXML();
     * Compute binary XML to its string format
     * Source: Source: http://stackoverflow.com/questions/2097813/how-to-parse-the-androidmanifest-xml-file-inside-an-apk-package/4761689#4761689
     *
     * @param xml Binary-formatted XML
     * @param sitOff
     * @param stOff
     * @param strInd
     * @return String-formatted XML
     */
    fun compXmlString(xml: ByteArray, sitOff: Int, stOff: Int, strInd: Int): String? {
        if (strInd < 0) return null
        val strOff = stOff + LEW(xml, sitOff + strInd * 4)
        return compXmlStringAt(xml, strOff)
    }


    /**
     * Tool Method for decompressXML();
     * Apply indentation
     *
     * @param indent Indentation level
     * @param str String to indent
     * @return Indented string
     */
    fun prtIndent(indent: Int, str: String): String {

        return spaces.substring(0, Math.min(indent * 2, spaces.length)) + str
    }


    /**
     * Tool method for decompressXML()
     * Return the string stored in StringTable format at
     * offset strOff.  This offset points to the 16 bit string length, which
     * is followed by that number of 16 bit (Unicode) chars.
     *
     * @param arr StringTable array
     * @param strOff Offset to get string from
     * @return String from StringTable at offset strOff
     */
    fun compXmlStringAt(arr: ByteArray, strOff: Int): String {
        val strLen = (arr[strOff + 1] shl (8 and 0xff00)) or (arr[strOff].toInt() and 0xff)
        val chars = ByteArray(strLen)
        for (ii in 0 until strLen) {
            chars[ii] = arr[strOff + 2 + ii * 2]
        }
        return String(chars)  // Hack, just use 8 byte chars
    } // end of compXmlStringAt


    /**
     * Return value of a Little Endian 32 bit word from the byte array
     * at offset off.
     *
     * @param arr Byte array with 32 bit word
     * @param off Offset to get word from
     * @return Value of Little Endian 32 bit word specified
     */
    fun LEW(arr: ByteArray, off: Int): Int {
        return (arr[off + 3] shl 24 and -0x1000000 or ((arr[off + 2] shl 16) and 0xff0000)
                or (arr[off + 1] shl 8 and 0xff00) or (arr[off].toInt() and 0xFF))
    } // end of LEW

    private infix fun Byte.shl(i: Int): Int = (this.toInt() shl i)
    private infix fun Int.shl(i: Int): Int = (this shl i)

यह उत्तर के एक कोटलिन संस्करण है।


अफसोस की बात यह है कि कुछ दुर्लभ मामलों पर यह समस्या है। यहाँ देखें: stackoverflow.com/q/60565299/878126
Android डेवलपर

0

मुझे AXMLPrinter2 मिला, Android4Me प्रोजेक्ट में एक Java ऐप जो कि मेरे पास AndroidManifest.xml पर ठीक काम करने के लिए था (और XML को अच्छी तरह से स्वरूपित तरीके से प्रिंट करता है)। http://code.google.com/p/android4me/downloads/detail?name=AXMLPrinter2.jar

एक नोट .. यह (और रिबो से इस जवाब पर कोड) हर संकलित XML फ़ाइल को संभालने के लिए प्रकट नहीं होता है जो कि मैं भर में आया हूं। मैंने पाया कि जहां स्ट्रिंग्स को एक-एक बाइट प्रति कैरेक्टर के साथ स्टोर किया जाता था, बजाय इसके कि डबल बाइट फॉर्मेट में होता है।


मैं इस लिंक तक नहीं पहुँच सकता। कोई विकल्प?
एंड्रॉयड डेवलपर

0

यह मददगार हो सकता है

public static int vCodeApk(String path) {
    PackageManager pm = G.context.getPackageManager();
    PackageInfo info = pm.getPackageArchiveInfo(path, 0);
    return info.versionCode;
    //        Toast.makeText(this, "VersionCode : " + info.versionCode + ", VersionName : " + info.versionName, Toast.LENGTH_LONG).show();
}

G मेरा अनुप्रयोग वर्ग है:

public class G extends Application {

0

मैं एक वर्ष से ऊपर के लिए पोस्ट किए गए Ribo कोड के साथ चल रहा हूं, और इसने हमारी अच्छी सेवा की है। हाल के अपडेट (ग्रेड 3.x) के साथ, हालांकि, मैं अब AndroidManifest.xml को पार्स करने में सक्षम नहीं था, मुझे सीमा त्रुटियों से सूचकांक मिल रहा था, और सामान्य तौर पर यह फ़ाइल पार्स करने में सक्षम नहीं था।

अपडेट: मुझे अब विश्वास है कि हमारे मुद्दे ग्रैडल 3.x में अपग्रेड करने के साथ थे। इस लेख में वर्णन किया गया है कि AirWatch के मुद्दे कैसे थे और aapt2 के बजाय aapt का उपयोग करने के लिए एक Gradle सेटिंग का उपयोग करके तय किया जा सकता है AirWatch, Gradle 3.0.0-beta1 के लिए Android Plugin के साथ असंगत लगता है

आस-पास खोज करने पर मैं इस ओपन सोर्स प्रोजेक्ट में आ गया, और इसे बनाए रखा जा रहा था और मैं इस बिंदु पर पहुंचने में सक्षम था और अपने दोनों पुराने एपीके को पढ़ पाया जिसे मैं पहले पार्स कर सकता था, और नए एपीके ने तर्क दिया कि रिबो से तर्क अपवादों को फेंक दिया।

https://github.com/xgouchet/AXML

उनके उदाहरण से मैं यही कर रहा हूं

  zf = new ZipFile(apkFile);

  //Getting the manifest
  ZipEntry entry = zf.getEntry("AndroidManifest.xml");
  InputStream is = zf.getInputStream(entry);

     // Read our manifest Document
     Document manifestDoc = new CompressedXmlParser().parseDOM(is);

     // Make sure we got a doc, and that it has children
     if (null != manifestDoc && manifestDoc.getChildNodes().getLength() > 0) {
        //
        Node firstNode = manifestDoc.getFirstChild();

        // Now get the attributes out of the node
        NamedNodeMap nodeMap = firstNode.getAttributes();

        // Finally to a point where we can read out our values
        versionName = nodeMap.getNamedItem("android:versionName").getNodeValue();
        versionCode = nodeMap.getNamedItem("android:versionCode").getNodeValue();
     }

0

apkanalyzer मददगार होगा

@echo off

::##############################################################################
::##
::##  apkanalyzer start up script for Windows
::##
::##  converted by ewwink
::##
::##############################################################################

::Attempt to set APP_HOME

SET SAVED=%cd%
SET APP_HOME=C:\android\sdk\tools
SET APP_NAME="apkanalyzer"

::Add default JVM options here. You can also use JAVA_OPTS and APKANALYZER_OPTS to pass JVM options to this script.
SET DEFAULT_JVM_OPTS=-Dcom.android.sdklib.toolsdir=%APP_HOME%

SET CLASSPATH=%APP_HOME%\lib\dvlib-26.0.0-dev.jar;%APP_HOME%\lib\util-2.2.1.jar;%APP_HOME%\lib\jimfs-1.1.jar;%APP_HOME%\lib\annotations-13.0.jar;%APP_HOME%\lib\ddmlib-26.0.0-dev.jar;%APP_HOME%\lib\repository-26.0.0-dev.jar;%APP_HOME%\lib\sdk-common-26.0.0-dev.jar;%APP_HOME%\lib\kotlin-stdlib-1.1.3-2.jar;%APP_HOME%\lib\protobuf-java-3.0.0.jar;%APP_HOME%\lib\apkanalyzer-cli.jar;%APP_HOME%\lib\gson-2.3.jar;%APP_HOME%\lib\httpcore-4.2.5.jar;%APP_HOME%\lib\dexlib2-2.2.1.jar;%APP_HOME%\lib\commons-compress-1.12.jar;%APP_HOME%\lib\generator.jar;%APP_HOME%\lib\error_prone_annotations-2.0.18.jar;%APP_HOME%\lib\commons-codec-1.6.jar;%APP_HOME%\lib\kxml2-2.3.0.jar;%APP_HOME%\lib\httpmime-4.1.jar;%APP_HOME%\lib\annotations-12.0.jar;%APP_HOME%\lib\bcpkix-jdk15on-1.56.jar;%APP_HOME%\lib\jsr305-3.0.0.jar;%APP_HOME%\lib\explainer.jar;%APP_HOME%\lib\builder-model-3.0.0-dev.jar;%APP_HOME%\lib\baksmali-2.2.1.jar;%APP_HOME%\lib\j2objc-annotations-1.1.jar;%APP_HOME%\lib\layoutlib-api-26.0.0-dev.jar;%APP_HOME%\lib\jcommander-1.64.jar;%APP_HOME%\lib\commons-logging-1.1.1.jar;%APP_HOME%\lib\annotations-26.0.0-dev.jar;%APP_HOME%\lib\builder-test-api-3.0.0-dev.jar;%APP_HOME%\lib\animal-sniffer-annotations-1.14.jar;%APP_HOME%\lib\bcprov-jdk15on-1.56.jar;%APP_HOME%\lib\httpclient-4.2.6.jar;%APP_HOME%\lib\common-26.0.0-dev.jar;%APP_HOME%\lib\jopt-simple-4.9.jar;%APP_HOME%\lib\sdklib-26.0.0-dev.jar;%APP_HOME%\lib\apkanalyzer.jar;%APP_HOME%\lib\shared.jar;%APP_HOME%\lib\binary-resources.jar;%APP_HOME%\lib\guava-22.0.jar

SET APP_ARGS=%*
::Collect all arguments for the java command, following the shell quoting and substitution rules
SET APKANALYZER_OPTS=%DEFAULT_JVM_OPTS% -classpath %CLASSPATH% com.android.tools.apk.analyzer.ApkAnalyzerCli %APP_ARGS%

::Determine the Java command to use to start the JVM.
SET JAVACMD="java"
where %JAVACMD% >nul 2>nul
if %errorlevel%==1 (
  echo ERROR: 'java' command could be found in your PATH.
  echo Please set the 'java' variable in your environment to match the
  echo location of your Java installation.
  echo.
  exit /b 0
)

:: execute apkanalyzer

%JAVACMD% %APKANALYZER_OPTS%

मूल पोस्ट https://stackoverflow.com/a/51905063/1383521


1
@Alther जवाब
सात
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.