1# Making changes 2 3## Coding style 4 5This project was originally written in C, in the Android platform style. 6It has been substantially re-written in C++, in the Google C++ style. 7 8This style 9[is summarized here](https://google.github.io/styleguide/cppguide.html). 10 11When in doubt, clang-format -style=google is a good reference. 12 13## Testing 14 15This codebase has both integration and unittests, all of which are expected to 16consistently pass against a device/emulator: 17 18``` 19$ ./runtests.sh && echo "All tests pass" 20 21``` 22