ipapk

package module
v1.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 12, 2019 License: MIT Imports: 20 Imported by: 0

README

ipapk

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

Build Status

INSTALL

$ go get github.com/qiqizjl/ipapk

USAGE

package main

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

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

Documentation

Index

Constants

View Source
const (
	PlatformIOS     = 1
	PlatformAndroid = 2
	IOSAdHoc        = 1
	IOSAppStore     = 2
	IOSEnterprise   = 3
)

Variables

View Source
var (
	ErrNoIcon            = errors.New("icon not found")
	ErrNoMobileProvision = errors.New("mobileprovision 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
	Platform int
	IOS      iosInfo
}

func NewAppParser

func NewAppParser(name string) (*AppInfo, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL