README ¶ ipapk ipa or apk parser written in golang, aims to extract app information 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) } Expand ▾ Collapse ▴ Documentation ¶ Index ¶ Variables type AppInfo func NewAppParser(name string) (*AppInfo, error) Constants ¶ This section is empty. Variables ¶ View Source var ( ErrNoIcon = errors.New("icon not found") ) Functions ¶ This section is empty. Types ¶ type AppInfo ¶ type AppInfo struct { Name string BundleId string Version string Build string Icon image.Image Size int64 } func NewAppParser ¶ func NewAppParser(name string) (*AppInfo, error) Source Files ¶ View all Source files parser.go Click to show internal directories. Click to hide internal directories.