- Launch emulator
- Run
bazel mobile-install //app/src/main:app --fat_apk_cpu=x86 --incremental --start_app - Profit
- 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. - 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.

