Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 402 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 402 Bytes

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