| # IREE TFLite Android Native Bindings |
| |
| ## Building The Library |
| |
| Process for building the AAR library: |
| |
| 1. Start AndroidStudio. Select _Open File or Project_ then choose `iree/bindings/tflite/java/gragle.build` |
| 2. AndroidStudio should sync the project and setup gradlew uner `iree/bindings/tflite/java` |
| 3. Make the project using AndroidStudio or run the build directly in terminal: |
| ```shell |
| ./gradlew build |
| ``` |
| |
| This produces two libraries under `iree/bindings/tflite/java/build/outputs/aar`: |
| * `iree-tflite-bindings-debug.aar` |
| * `iree-tflite-bindings-release.aar` |
| |
| ### AAR Contents |
| |
|  |
| |
| ## Using the Library |
| |
| Include either library in another gradle project for IREE TFLite binding support. See "[Adding dependencies with the Project Structure Dialog](https://developer.android.com/studio/projects/android-library#psd-add-dependencies)" for use in AndroidStudio. |