To use the Android (wrapper) library in other apps, it is easiest to build the library project and include the resulting AAR (Android Archive) file in your app.
- Install AndroidStudio including NDK and CMake (see 'SDK Tools').
- Open the project in folder containing this README.
- The project contains 2 modules:
zxingcpp
is the wrapper library,app
is the demo app usingzxingcpp
.
To build the AAR (Android Archive) from the command line:
$ ./gradlew :zxingcpp:assembleRelease
Then copy zxingcpp/build/outputs/aar/zxingcpp-release.aar
into app/libs
of your app.