From 0260b05743ff31b89476d5ddd76029c4920c91d0 Mon Sep 17 00:00:00 2001 From: Michael Bestas Date: Tue, 11 Oct 2022 17:35:25 +0300 Subject: [PATCH] carriersettings-extractor: Update README Change-Id: Ia341eb2a61a75d7dbd54a90225078ed05a79b0fe --- carriersettings-extractor/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/carriersettings-extractor/README.md b/carriersettings-extractor/README.md index 43bf57e..56cbf6a 100644 --- a/carriersettings-extractor/README.md +++ b/carriersettings-extractor/README.md @@ -20,11 +20,11 @@ Convert `CarrierSettings/*.pb` to `apns-full-conf.xml` and `vendor.xml`. ## Protobuf definitions -The definitions in [`carriersettings.proto`](carriersettings.proto) are useful for inspecting the CarrierSettings protobuf files. +The definitions in [`carrier_list.proto`](carrier_list.proto) and [`carrier_settings.proto`](carrier_settings.proto) are useful for inspecting the CarrierSettings protobuf files. - protoc --decode=CarrierList carriersettings.proto < CarrierSettings/carrier_list.pb - protoc --decode=CarrierSettings carriersettings.proto < CarrierSettings/verizon_us.pb - protoc --decode=MultiCarrierSettings carriersettings.proto < CarrierSettings/others.pb + protoc --decode=com.google.carrier.CarrierList carrier_list.proto < CarrierSettings/carrier_list.pb + protoc --decode=com.google.carrier.CarrierSettings carrier_settings.proto < CarrierSettings/verizon_us.pb + protoc --decode=com.google.carrier.MultiCarrierSettings carrier_settings.proto < CarrierSettings/others.pb To check schema or otherwise inspect the protobuf files without applying definitions, use the `--decode_raw` argument.