For the full documentation, please visit the Bazel documentation page.
- Launch emulator
- Run
bazel mobile-install //app/src/main:app --android_platforms=//:x86 --start_app
- JNI/C++ sources goes into the
cc_librarytarget,//app/src/main:jni_lib. - Java sources, resource files, and assets go into the
android_librarytarget,//app/src/main:lib. This target depends on thecc_librarytarget. - The APK is built from the
android_binarytarget,//app/src/main:app. This target depends on theandroid_librarytarget.
NOTE: This graph omits the Google Maven AAR dependencies.

