blob: d4bf8de02cb54615d64b96eeb3f3d93212525fa9 [file] [log] [blame]
// Copyright (C) 2016 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"flag"
"io/ioutil"
"fmt"
"android.googlesource.com/platform/tools/gpu/client/android/apk"
"android.googlesource.com/platform/tools/gpu/framework/app"
"android.googlesource.com/platform/tools/gpu/framework/log"
)
func main() {
app.ShortHelp = "dump manifest prints the manifest of an apk."
app.Run(run)
}
func run(ctx log.Context) error {
path := flag.Arg(0)
apkData, err := ioutil.ReadFile(path)
if err != nil {
return err
}
files, err := apk.Read(ctx, apkData)
if err != nil {
return err
}
m, err := apk.GetManifestXML(ctx, files)
if err != nil {
return err
}
fmt.Println(m)
return nil
}