/ipapk

ipa or apk parser written in golang, aims to extract app information

Primary LanguageGoMIT LicenseMIT

ipapk

ipa or apk parser written in golang, aims to extract app information

Build Status

INSTALL

$ go get github.com/phinexdaz/ipapk

USAGE

package main

import (
	"fmt"
	"github.com/phinexdaz/ipapk"
)

func main() {
	apk, _ := ipapk.NewAppParser("test.apk")
	fmt.Println(apk)
}