guanchaoguo / ipapk

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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


Languages

Language:Go 100.0%