Skip to content

h0x0er/andromanifest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Andromanifest

AndroidManifest.xml parser written in go

Usage

package main

import "io/ioutil"
import "fmt"
import "github.com/h0x0er/andromanifest"


func main(){

  mf, _ := androidmainfest.NewFromFile("/path/to/AndroidManifest.xml")
  fmt.Println(mf.Package) // prints the package name

}