Skip to content

follyxing/appfile-info

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

appfile-info

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

Build Status

APPFILE INFO

  	//common
	Name                     string
	BundleId                 string
	Version                  string
	Build                    string
	Icon                     image.Image
	Size                     int64
	
	//apk file only
	ApkDebug                 bool
	
	//ipa file only
	IosPlatform              []string
	IosSigningType           string //development, ad-hoc, enterprise, app-store
	IosSigningExpirationDate string
	IosProvisionedDevices    []string
	

INSTALL

$ go get github.com/follyxing/appfile-info

USAGE

package main

import (
	"fmt"
	"github.com/follyxing/appfile-info"
)

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

Thanks

fork from : https://github.com/phinexdaz/ipapk

About

ipa and apk file info

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages