How to decode android app bundle .pb files

Viewed 23

I've found that to decode files like manifest is as simple as: protoc --decode=aapt.pb.XmlNode Resources.proto < AndroidManifest.xml > output.txt

What im looking for is what would be proto message to decode other files, specifically BundleConfig.pb Cant manage to find out how to decode this file.

1 Answers

I've found how in case anyone needs it.

protoc --decode=aapt.pb.ResourceTable Resources.proto < Bundleconfig.pb > output.txt

Related