Skip to content

wlevene/androidbinary

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

androidbinary

Build Status

Android binary file parser

Parse XML binary

package main

import (
	"fmt"
	"github.com/shogo82148/androidbinary"
	"os"
)

func main() {
	f, _ := os.Open("AndroidManifest")
	xml, _ := androidbinary.NewXMLFile(f)
	reader := xml.Reader()
	// read XML from reader
}

License

This software is released under the MIT License, see LICENSE.

About

Android binary file parser written in golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%