Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/h0x0er/andromanifest

AndroidManifest.xml parser written in go
https://github.com/h0x0er/andromanifest

android android-manifest androidsecurity bugbounty golang mobile security-tools

Last synced: 11 days ago
JSON representation

AndroidManifest.xml parser written in go

Awesome Lists containing this project

README

        

# Andromanifest
AndroidManifest.xml parser written in go

# Usage

```go

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

}

```