একটি .apk প্যাকেজের অভ্যন্তরে AndroidManLive.xML ফাইলটি কীভাবে পার্স করবেন


173

এই ফাইলটি বাইনারি এক্সএমএল ফর্ম্যাটে রয়েছে বলে মনে হচ্ছে। এই ফর্ম্যাটটি কী এবং কীভাবে এটি প্রোগ্রামিকভাবে পার্স করা যায় (এসডিকে অ্যাপ্যাট ডাম্প সরঞ্জামটি ব্যবহার করার বিপরীতে)?

এই বাইনারি ফর্ম্যাটটি এখানে ডকুমেন্টেশনে আলোচনা করা হয়নি ।

দ্রষ্টব্য : আমি অ্যান্ড্রয়েড পরিবেশের বাইরে থেকে জাভা থেকে এই তথ্যটি অ্যাক্সেস করতে চাই।


2
আপনি যে নির্দিষ্ট ব্যবহারের পরে রয়েছেন তা কী? আপনার নিজস্ব অ্যাপ্লিকেশনটিতে প্রকাশিত তথ্যগুলির অনেকগুলি android.content.pm.PackageManager.queryXXপদ্ধতি (ডক্স: ডেভেলপার.অ্যান্ড্রয়েড . com/references/android/content/pm/… ) ব্যবহার করে জিজ্ঞাসা করা যেতে পারে ।
রোমান নুরিক

2
আমি অ্যান্ড্রয়েড পরিবেশে নেই। আমি একটি .apk ফাইলটি পড়তে চাই, অ্যান্ড্রয়েড ম্যানিফেস্ট.এক্সএমএল এবং এক্সএমএল হিসাবে পার্স করতে চাই।
jnorris

2
আমি একটি APK এক্সট্রাক্টর তৈরি করেছি যা এএপিটির উপর নির্ভরশীল নয়। এটিতে
কোড.

উত্তর:


174

অ্যান্ড্রয়েড-অ্যাপক্টোল ব্যবহার করুন

এমন একটি অ্যাপ্লিকেশন রয়েছে যা এপিপি ফাইলগুলি পড়ে এবং এক্সএমএলগুলি প্রায় মূল ফর্মটিতে ডিকোড করে।

ব্যবহার:

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

আরও তথ্যের জন্য অ্যান্ড্রয়েড-অ্যাপক্টোল পরীক্ষা করুন


11
এর দক্ষতা প্রদর্শন করার জন্য একটি স্নিপেটটি সুন্দর হতে পারে:apktool d Gmail.apk && cat Gmail/AndroidManifest.xml
এহতেশ চৌধুরী

minSdkVersionএবং অন্যান্য সংস্করণ প্যারামিটারগুলিও পাওয়া যাবেGmail/apktool.yml
9-10

এটিকে অ্যান্ড্রয়েড অ্যাপের অভ্যন্তরে কীভাবে ব্যবহার করা যেতে পারে? এবং ইনপুটস্ট্রিম থেকে উদাহরণস্বরূপ ডেটা পেতে এটি ব্যবহার করা যেতে পারে (উদাহরণ: জিপ ফাইলের মধ্যে APK ফাইল বিদ্যমান)?
অ্যান্ড্রয়েড বিকাশকারী

71

এই জাভা পদ্ধতিটি, যা একটি অ্যান্ড্রয়েড, ডকুমেন্টগুলিতে (আমি কী সম্পর্কে ব্যাখ্যা করতে সক্ষম হয়েছি) এ চলেছি .apk প্যাকেজে AndroidManLive.xML ফাইলের বাইনারি বিন্যাস। দ্বিতীয় কোড বাক্সে কীভাবে ডিকম্প্রেসএক্সএমএল কল করা যায় এবং ডিভাইসের অ্যাপ্লিকেশন প্যাকেজ ফাইল থেকে বাইট [] কীভাবে লোড করা যায় তা দেখানো হয়। (এমন ক্ষেত্র রয়েছে যার উদ্দেশ্য আমি বুঝতে পারি না, যদি আপনি তাদের অর্থ কী তা জানেন তবে আমাকে বলুন, আমি তথ্য আপডেট করব))

// 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

প্রক্রিয়া করার জন্য এই পদ্ধতিটি অ্যান্ড্রয়েড ম্যানিফেস্টকে একটি বাইটে পাঠায় []:

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

বেশিরভাগ অ্যাপ্লিকেশনগুলি / সিস্টেমে / অ্যাপে সঞ্চিত থাকে যা আমার ইভোকে রুট ছাড়াই পাঠযোগ্য, উপরের 'পাথ' যুক্তিটি হ'ল: "/ সিস্টেমে / অ্যাপ / ওয়েদার.এপকে"


12
অ্যান্ড্রয়েডের বাইরে ব্যবহার করা যায় এমন কোনও সরঞ্জামের জন্য +1। আমি এটিকে একটি ওয়ার্কিং কমান্ড-লাইন জাভা সরঞ্জাম হিসাবে আবৃত করেছি; দেখতে pastebin.com/c53DuqMt
noamtm

1
হ্যালো রিবো, আমি এক্সএমএল ফাইলটি পড়তে উপরের কোডটি ব্যবহার করছি। এখন আমি যা করতে চাই তা আমার এক্সএমএল ফাইলে রয়েছে, আমার একটি বিশিষ্ট নাম রয়েছে যার মান "@ স্ট্রিং / অ্যাবসি" দ্বারা নির্দিষ্ট করা হয়েছে এবং আমি এটি কিছু স্ট্রিং-এ হার্ড-কোড করতে চাই। অর্থাত; স্ট্রিং রেফারেন্স সরান। তবে সমস্যাটি হ'ল আমি -২ হিসাবে অ্যাটরভ্যালিউসির মান পাই। আমি একটি মানচিত্রে কীগুলি যুক্ত করছি এবং মানচিত্রে আমার কী এন্ট্রি রয়েছে, আমি মানটি অ্যাটারভ্যালুএসিতে রাখতে চাই। আমি কীভাবে এগিয়ে যাব? Plz সহায়তা।
অ্যান্ড্রয়েডগুই

1
@ কোরি-ওগবার্ন, কমপ্লেক্সএমএমএল স্ট্রিংএট এর প্রয়োগকরণ পরিবর্তন করুন: `চর [] চরগুলি = নতুন চর [স্ট্রেন]; (int ii = 0; ii <strLen; ii ++) rs চরগুলি [ii] = (চর) ((আরআর [strOff + 2 + ii * 2 + 1] & 0x00FF) << 8) + (আরআর [strOff + 2 + ii * 2] & 0x00FF)); } `
আন্তন-এম

1
কেউ কি সম্প্রতি চেষ্টা করেছে? আমরা অ্যান্ড্রয়েড স্টুডিও 3.0.০.১ ব্যবহার করছি এবং সম্প্রতি চটকদারিতে স্যুইচ করেছি এবং এটি আর কাজ করে না। এটি AS বা আমাদের বিল্ড প্রক্রিয়া পরিবর্তন ছিল কিনা তা খুঁজে বের করতে হবে।
জিআর দূত

1
@ গ্রেইনভয় আমরা এখানেও একটি সমস্যার মুখোমুখি হয়েছি। আমরা একটি 'java.lang.ArrayIndexOutOfBoundsException' ব্যতিক্রম পাচ্ছি
ম্যাড

32

অ্যান্ড্রয়েড এসকেকে থেকে অজগর (বা যাই হোক না কেন) স্ক্রিপ্টে অ্যান্ড্রয়েড অ্যাসেট প্যাকেজিং সরঞ্জাম (অপট) ব্যবহার সম্পর্কে কী ?

এ্যাপের ( http://elinux.org/Android_aapt ) মাধ্যমে , প্রকৃতপক্ষে, আপনি .apk প্যাকেজ এবং তার AndroidManLive.xML ফাইল সম্পর্কে তথ্য পুনরুদ্ধার করতে পারেন । বিশেষত, আপনি 'ডাম্প' সাব-কমান্ডের মাধ্যমে .apk প্যাকেজের স্বতন্ত্র উপাদানগুলির মানগুলি বের করতে পারেন । উদাহরণস্বরূপ, যদি আপনি নিষ্কাশন করতে পারেন ব্যবহারকারী-অনুমতি মধ্যে Andro আইডি একটি ভিতরে ফাইল .apk এই ভাবে প্যাকেজ:

$ 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

অনুরূপ ফ্যাশনে আপনি অ্যান্ড্রয়েড ম্যানিফেস্ট.এক্সএমএলের অন্যান্য তথ্য (যেমন প্যাকেজ , অ্যাপের নাম , ইত্যাদি ...) বের করতে পারেন :

#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 ""

পরিবর্তে আপনি যদি পুরো অ্যান্ড্রয়েড ম্যানিফেস্ট এক্সএমএল ট্রিটি বিশ্লেষণ করতে চান তবে আপনি 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"))

এই সরঞ্জামটি কি সর্বদা অ্যান্ড্রয়েড রোমে উপস্থিত থাকে? এটি কি এমন কিছু যা সর্বদা নির্মিত?
অ্যান্ড্রয়েড বিকাশকারী

আপনি আমাকে জিজ্ঞাসা যদি উপায় ভাল। :) অ্যাপ্টোটল এবং এক্সএক্সএমএলপ্রিন্টার 2 নিয়ে আমার সমস্যা হয়েছে: কখনও কখনও তারা ব্যতিক্রম ইত্যাদি ছুঁড়ে দেয় etc. এটি অফিশিয়াল হাতিয়ার হিসাবে উল্লেখ করার দরকার নেই ।
অ্যালবাস ডাম্বলডোর

16

আপনি অ্যান্ড্রয়েড-এলোমেলো প্রকল্পের মধ্যে কিছুক্ষণ আগে বিকাশ করা axML2xML.pl সরঞ্জাম ব্যবহার করতে পারেন । এটি বাইনারি থেকে পাঠ্য ম্যানিফেস্ট ফাইল (AndroidManLive.xML) উত্পন্ন করবে ml

আমি " পাঠ্য " বলছি এবং " আসল " না কারণ অনেকগুলি বিপরীত প্রকৌশল সরঞ্জামের মতো এটিও নিখুঁত নয় এবং ফলাফলটি সম্পূর্ণ হবে না । আমার ধারণা হয় এটি কখনই সম্পূর্ণ বৈশিষ্ট্যযুক্ত ছিল না বা কেবল সাম্প্রতিক সামঞ্জস্যপূর্ণ নয় (নতুন বাইনারি এনকোডিং স্কিম সহ)। কারণ যাই হোক না কেন, axML2xML.pl সরঞ্জামটি সমস্ত বৈশিষ্ট্যের মানগুলি সঠিকভাবে বের করতে সক্ষম হবে না। এই জাতীয় বৈশিষ্ট্যগুলি হ'ল minSdkVersion, টার্গেটএসডিকি ভার্সন এবং মূলত সমস্ত বৈশিষ্ট্য যা রেফারেন্সিং রিসোর্সগুলি থাকে (যেমন স্ট্রিং, আইকন, ইত্যাদি), কেবলমাত্র শ্রেণীর নাম (ক্রিয়াকলাপ, পরিষেবাদি ইত্যাদি) সঠিকভাবে বের করা হয়।

তবে, আপনি মূল অ্যান্ড্রয়েড অ্যাপ্লিকেশন ফাইল ( .apk ) এ অপ্ট সরঞ্জাম চালিয়ে এই হারিয়ে যাওয়া তথ্যগুলি সন্ধান করতে পারেন :

aapt l -a <someapp.apk>


1
ধন্যবাদ @ শনজিলা। আমার প্যাকেজের নাম এবং সংস্করণ কোডের তথ্য দরকার, এ্যাপটি কাজটি করে। আমি যেমন ল্যাম্পের সাথে কাজ করছি, আমি পিএইচপি-তে অপ্ট কমান্ড চালাচ্ছি এবং পিএইচপি দিয়ে আউটপুট প্রক্রিয়া করি।
হংসস্টার

কোনও জাভা / কোটলিন সমাধান যা অ্যান্ড্রয়েডের জন্য কাজ করতে পারে?
অ্যান্ড্রয়েড বিকাশকারী

12

সর্বশেষতম এসডিকে-সরঞ্জামগুলির সাহায্যে আপনি এখন একটি APK এর অ্যান্ড্রয়েড ম্যানিফেস্ট.এক্সএমএল (পাশাপাশি সংস্থান হিসাবে অন্যান্য অংশ) মুদ্রণ করতে অ্যাপকন্যালাইজার নামে একটি সরঞ্জাম ব্যবহার করতে পারেন।

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

apkanalyzer


তোমাকে অনেক ধন্যবাদ! আমি কয়েক দিন ধরে এটি গুগল করে যাচ্ছিলাম এবং তৃতীয় পক্ষের কোনও সমাধান চাই না যা পাইথন বা পার্ল বা জাভা জারগুলিতে নির্ভর করে বা আপনার কী আছে।
জেরেমি

বর্তমান সরঞ্জামগুলির ল্যান্ডস্কেপ প্রদত্ত এটি সেরা উত্তর।
greg7gkb

11

নিম্নলিখিত নীচের ডাব্লুপিএফ প্রকল্পটি দেখুন যা সম্পত্তিগুলি সঠিকভাবে ডিকোড করে।


1
এই জন্য +1, ধন্যবাদ !!! সি # বিকাশকারীদের জন্য, আমি অবশ্যই এটি সুপারিশ করি। আমাকে অনেক সময় বাঁচিয়েছে =) এটি আমাকে কিছুক্ষণ পিছিয়ে রেখেছে কারণ সংস্করণ নম্বর এবং প্যাকেজের নাম পুনরুদ্ধার করতে আমাকে "অপ্ট" চালাতে হয়েছিল (যা আমার পরিস্থিতি ওয়েব পরিবেশে রয়েছে এবং ব্যবহারকারী উভয়ই পুনরুদ্ধারের পরে প্রতিক্রিয়া প্রয়োজন বলে মনে করা যায় না) প্যাকেজের নাম এবং সংস্করণ নম্বর)।
জোনাথন লিওনো

আপনি আসলে সহজেই উপস্থাপনা কোর নির্ভরতা অপসারণ করতে পারেন, এটি কেবল এটির রঙ শ্রেণীর জন্য ব্যবহৃত হয়। আপনি হয় আপনার নিজের তৈরি করতে পারেন, বা সিস্টেম.ড্রয়িং ব্যবহার করতে পারেন।
অ্যালেক্সিস

এর মতো কোনও সমাধান আছে তবে অ্যান্ড্রয়েড অ্যাপের অভ্যন্তরে কাজ করে এমন এক?
অ্যান্ড্রয়েড বিকাশকারী

11

apk-parser, https://github.com/caoqianli/apk-parser , জাভা জন্য হালকা হালকা ইমপ্লিট, অপ্ট বা অন্যান্য বাইনারিগুলির উপর নির্ভরশীলতা ছাড়াই, বাইনারি এক্সএমএল ফাইলগুলি এবং অন্যান্য এপিপি ইনফোগুলির জন্য পার্স করা ভাল।

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();

পরীক্ষিত না. এটি কাজ করা উচিত, তবে কেউ অ্যান্ড্রয়েড এল নিয়ে সমস্যাগুলি রিপোর্ট করে
লিউ ডং

আমি দেখি. আপনি কি এইভাবে অভিপ্রায়-ফিল্টার পেতে পারেন?
অ্যান্ড্রয়েড বিকাশকারী

ইন্টেন্ট-ফিল্টারগুলি ম্যানিফেস্ট এক্সএমএল ফাইলকে বিশ্লেষণ করে প্রাপ্ত করা যেতে পারে, এখন সরাসরি কোনও পদ্ধতি নেই।
লিউ ডং

"খাঁটি জাভা", একটি গভীর দুর্ভাগ্যজনক বাক্যাংশ
গ্লেন মেইনার্ড

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

এটি কার্যকর হলে জাভা স্নিপেটের সি ++ সংস্করণটি রিবো পোস্ট করেছেন:

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);
    }
};

দুটি বাগ: কমপেক্সএক্সএমএল স্ট্রিংএটে: charsনতুন চর দ্বারা বরাদ্দ করা হয়েছে [], তবে তারপরে সঠিকটির পরিবর্তে নিখরচায় delete[] chars;। ডিকম্প্রেসএক্সএমএল কর্টোর শেষে এটি অবশ্যই হওয়া উচিত prt(" end at offset "+toIntString(off));, অন্যথায় পয়েন্টার গাণিতিক ব্যবহৃত হয় ...
স্মাইলথ্যাক্স

3

রেফারেন্সের জন্য এখানে আমার রিবোর কোডটির সংস্করণ। মূল পার্থক্যটি হ'ল ডিকম্প্রেসএক্সএমএল () সরাসরি একটি স্ট্রিং দেয়, যা আমার উদ্দেশ্যগুলির জন্য আরও উপযুক্ত ব্যবহার ছিল।

দ্রষ্টব্য: রিবোর সমাধানটি ব্যবহারের ক্ষেত্রে আমার একমাত্র উদ্দেশ্য ছিল ম্যানিফেস্ট এক্সএমএল ফাইল থেকে একটি .APK ফাইলের প্রকাশিত সংস্করণ আনা, এবং আমি নিশ্চিত করি যে এই উদ্দেশ্যে এটি সুন্দরভাবে কাজ করে।

সম্পাদনা করুন [2013-03-16]: এটা সুন্দর কাজ করে যদি সংস্করণ সাধারণ পাঠ্য হিসাবে সেট করা হয়, কিন্তু যদি এটা সেট একটি রিসোর্স এক্সএমএল পড়ুন, এটা উদাহরণস্বরূপ 'রিসোর্স 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

আশা করি এটি অন্যান্য লোককেও সহায়তা করতে পারে।


যদি কোনও APK এর ম্যানিফেস্ট ফাইলটি সংস্করণের জন্য স্ট্রিং রিসোর্স xml কে বোঝায় তবে আপনার কোডটি ব্যর্থ। আমার ক্ষেত্রে আমি github.com/stephanenicolas/RoboDemo/robodemo-sample-1.0.1.apk/… থেকে একটি APK ডাউনলোড করেছি এবং এতে আপনার কোডটি চালিয়েছি । সংস্করণ মুদ্রণের পরিবর্তে, এটি রিসোর্স আইডি মুদ্রণ করে। অর্থাত্ "রিসোর্সআইডি 0x1" যা অকেজো এবং সেই সংস্থান আইডির সন্ধানের জন্য আমাদের আরও একটি প্রোগ্রাম প্রয়োজন যা সেই সংস্থান ফাইলটি খুঁজে বের করতে এবং এটির বিবর্তন করতে পারে।
ইয়াহিয়া আরশাদ

এটি মোটামুটি বোঝায়। সত্য কথা বলতে গেলে, আমার কাছে এটি ঘটেছিল না যে সংস্করণটি সরল পাঠ্যের পরিবর্তে একটি উত্স XML এ উল্লেখ করা যেতে পারে। আমি সেই বিশেষত্বটি কভার করতে আমার পোস্টটি সম্পাদনা করব।
ম্যাথিউউ

আপনি কী আমাকে স্ট্রিং.এক্সএমএল ডিকোড করতে এবং সেই নির্দিষ্ট সংস্থান আইডিটি সন্ধান করতে পারেন তা দয়া করে আমাকে বলতে পারেন। আমি এটি আমার বিশ্ববিদ্যালয়ের প্রকল্পে এটি ব্যবহার করতে চাই। বিল্ড ম্যানেজমেন্ট সিস্টেম তৈরি করতে
ইয়াহিয়া আরশাদ

@ চিটা সত্যি বলতে কি আমি তোমার চেয়ে বেশি কিছু জানি না। আমি কেবল রিবোর কোডটি নিয়েছি এবং আমার নির্দিষ্ট প্রয়োজনের জন্য এটি সংশোধন করেছি, তারপরে অন্য কেউ উপকৃত হতে পারে যদি তা ভাগ করে নিই। আমি .APK থেকে স্ট্রিং রিসোর্সগুলি পুনরুদ্ধার সম্পর্কিত নির্দিষ্ট সমাধান অনুসন্ধান করার পরামর্শ দিই এবং আমি এখানে প্রকাশিত একটির সাথে এটি যুগল করব। শুভকামনা!
ম্যাথিউ

3

অ্যান্ড্রয়েড স্টুডিও ২.২ এ আপনি সরাসরি এপিকে বিশ্লেষণ করতে পারেন। যান বিল্ড- বিশ্লেষণ এপিপি। APK নির্বাচন করুন, androidmanifest.xML এ নেভিগেট করুন। আপনি অ্যান্ড্রয়েডম্যানফিস্টের বিশদটি দেখতে পারেন।


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
অ্যান্ড্রয়েড বিকাশকারী 13

0

আমার কাছে থাকা অ্যান্ড্রয়েড ম্যানিফেস্ট.এক্সএমএল (এবং এক্সএমএলটিকে সুন্দরভাবে ফর্ম্যাট করা উপায়ে প্রিন্ট করে) এর জন্য কাজ করতে আমি অ্যান্ড্রয়েড 4Me প্রকল্পে একটি জাভা অ্যাপ্লিকেশন AXMLPrinter2 পেয়েছি। http://code.google.com/p/android4me/downloads/detail?name=AXMLPrinter2.jar

একটি নোট .. এটি (এবং রিবো থেকে এই উত্তরের কোড) আমি উপস্থিত প্রতিটি সংকলিত এক্সএমএল ফাইল হ্যান্ডেল করে না। আমি এমন একটি পাই যেখানে স্ট্রিংগুলি প্রতি বাইটে অক্ষর দ্বারা সংরক্ষিত ছিল, ডাবল বাইট বিন্যাসের পরিবর্তে এটি ধরে নেওয়া হয়।


আমি এই লিঙ্কে পৌঁছতে পারি না। কোন বিকল্প?
অ্যান্ড্রয়েড বিকাশকারী

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();
}

জি আমার অ্যাপ্লিকেশন ক্লাস:

public class G extends Application {

0

আমি এক বছরেরও বেশি সময় ধরে উপরে পোস্ট করা রিবো কোডটি নিয়ে চলছি এবং এটি আমাদের ভালভাবে উপভোগ করেছে। সাম্প্রতিক আপডেটগুলির সাথে (গ্রেডেল x.x) যদিও আমি আর অ্যান্ড্রয়েড ম্যানিফেস্ট.এক্সএমএল বিশ্লেষণ করতে সক্ষম হইনি, আমি সীমাবদ্ধ ত্রুটিগুলির বাইরে সূচক পেয়েছিলাম এবং সাধারণভাবে এটি আর ফাইলটি বিশ্লেষণ করতে সক্ষম হয় নি।

আপডেট: আমি এখন বিশ্বাস করি যে আমাদের সমস্যাগুলি গ্রেডল ৩.x-এ উন্নীতকরণের সাথে ছিল। এই নিবন্ধটি বর্ণনা করেছে যে কীভাবে এয়ারওয়াচের সমস্যা ছিল এবং এটি অপ্ট 2 এর পরিবর্তে অ্যাপট ব্যবহারের জন্য গ্রেডল সেটিং ব্যবহার করে সংশোধন করা যেতে পারে এয়ারওয়াচ গ্রেডল 3.0.0-বিটা 1 এর জন্য অ্যান্ড্রয়েড প্লাগইনের সাথে বেমানান বলে মনে হচ্ছে

আশেপাশে অনুসন্ধানের সময় আমি এই ওপেন সোর্স প্রকল্পটি দেখতে পেয়েছি এবং এটি রক্ষণাবেক্ষণ করা হচ্ছে এবং আমি আমার পুরাতন APKs যেটি পূর্বে পার্স করতে পেরেছিলাম তা উভয়ই পড়তে সক্ষম হয়েছি এবং রিবো থেকে যুক্তিযুক্ত নতুন যুক্তিগুলি ব্যতিক্রম ছুঁড়ে ফেলেছে

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
@ অ্যালার উত্তরটি দেখুন
সাত
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.