Skip to content

Commit b4945d4

Browse files
committed
READMEを追加
1 parent b34adad commit b4945d4

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
androidbinary
2+
=====
3+
4+
Android binary file parser
5+
6+
## Parse XML binary
7+
8+
``` go
9+
package main
10+
11+
import (
12+
"fmt"
13+
"github.com/shogo82148/androidbinay"
14+
"os"
15+
)
16+
17+
func main() {
18+
f, _ := os.Open("AndroidManifest")
19+
xml, _ := androidbinary.NewXMLFile(f)
20+
reader := xml.Reader()
21+
// read XML from reader
22+
}
23+
```

0 commit comments

Comments
 (0)