diff --git a/README.md b/README.md new file mode 100644 index 0000000..f897f15 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# OMCDecoder +Samsung OMC Decoder implementation in C++ from CSC apk. + +# Usage +``` +cscdecoder [options] input.xml output.xml + +Options: + -d/--decode Decodes input.xml and saves to output.xml (default) + -e/--encode Encodes input.xml and saves to output.xml + -i/--in-place Save output to input.xml (output.xml is ignored) +``` + +# How to Compile +```clang++ -lz -I./include decoder.cpp -o cscdecoder``` + +# Credits + +### [@mapbox](https://github.com/mapbox/gzip-hpp)