Giter Club home page Giter Club logo

android-apk-parser's Introduction

Android APK Parsing Lib

Simple class to read/parse the packageName, versionName, versionCode information, and more out of a compiled Android APK file.

This is accomplished by decompressing the AndroidManifest.xml file and then decoding the compiled XML binary file to glean this information.

I've been using this for some automatic versioning of various android artifacts I have. I am sharing this codebase under the Apache Source License 2.0 in hopes that others will find it useful (or educational).

Usage

A SNAPSHOT of the library has been deployed to oss.sonatype.org under the following dependency.

<dependency>
  <groupId>net.erdfelt.android</groupId>
  <artifactId>apk-parser</artifactId>
  <version>1.1</version>
</dependency>

Once you have that dependency (no other transitive dependencies required) you can use the following code to get the information you need.

package net.erdfelt.android.example;

import java.io.File;
import net.erdfelt.android.apk.AndroidApk;

public class ApkDump {
    public static void main(String[] args) {
        if(args.length < 1) {
            System.err.println("Usage: ApkDump [apkfile]");
            System.exit(-1);
        }
        File apkfile = new File(args[0]);
        if(!apkfile.exists()) {
            System.err.println("Error: File Not Found: " + apkfile);
            System.exit(-1);
        }
        try {
            AndroidApk apk = new AndroidApk(apkfile);
            System.out.println("APK: " + apkfile);
            System.out.println("  .packageName    = " + apk.getPackageName());
            System.out.println("  .appVersion     = " + apk.getAppVersion());
            System.out.println("  .appVersionCode = " + apk.getAppVersionCode());
        } catch(Throwable t) {
            t.printStackTrace(System.err);
        }
    }
}

That's it, pretty straightforward, the tricky part was decompiling the binary xml file, and that should be easy enough to extend for the other xml files in an APK file (including resources).

android-apk-parser's People

Contributors

joakime avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.