Browse Source

Use int64 for sizes

pull/8/head
Daniel Martí 11 years ago
parent
commit
74be4339ec
  1. 2
      index.go

2
index.go

@ -62,7 +62,7 @@ type App struct {
type Apk struct {
VName string `xml:"version"`
VCode int `xml:"versioncode"`
Size int `xml:"size"`
Size int64 `xml:"size"`
MinSdk int `xml:"sdkver"`
MaxSdk int `xml:"maxsdkver"`
ABIs CommaList `xml:"nativecode"`

Loading…
Cancel
Save