Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 285 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 285 Bytes

ipapk

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

INSTALL

$ go get github.com/phinexdaz/ipapk

USE

package main

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

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