Projects STRLCPY jadx Commits 9d885923
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    jadx-core/src/main/java/jadx/core/xmlgen/BinaryXMLParser.java
    skipped 88 lines
    89 89   is.mark(4);
    90 90   int v = is.readInt16(); // version
    91 91   int h = is.readInt16(); // header size
    92  - if (v == 0x0003 && h == 0x0008) {
     92 + // Some APK Manifest.xml the version is 0
     93 + if (h == 0x0008) {
    93 94   return true;
    94 95   }
    95 96   is.reset();
    skipped 424 lines
Please wait...
Page is in error, reload to recover