Skip to content

Commit

Permalink
Rename package to apkparser
Browse files Browse the repository at this point in the history
  • Loading branch information
Tasssadar committed Dec 6, 2017
1 parent 7113e36 commit 4b05507
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apkparser.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package binxml
package apkparser

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion attributes.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package binxml
package apkparser

// grep 'public static final int [a-zA-Z_]*=0x0101' R.java
func getAttributteName(id uint32) string {
Expand Down
2 changes: 1 addition & 1 deletion axml2xml/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"apkverifier"
"binxml"
"apkparser"
"bufio"
"crypto/x509"
"encoding/xml"
Expand Down
2 changes: 1 addition & 1 deletion common.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package binxml
package apkparser

import (
"encoding/binary"
Expand Down
2 changes: 1 addition & 1 deletion encoder.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package binxml
package apkparser

import "encoding/xml"

Expand Down
2 changes: 1 addition & 1 deletion manifest.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package binxml
package apkparser

import (
"encoding/binary"
Expand Down
2 changes: 1 addition & 1 deletion resources.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package binxml
package apkparser

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion stringtable.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package binxml
package apkparser

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion zipreader.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package binxml
package apkparser

import (
"archive/zip"
Expand Down

0 comments on commit 4b05507

Please sign in to comment.