Compiling the Android App

I would like to compile the app myself, to tinker with it.
I there any documentation about the necessary build environment and the steps to build?

A simple ./gradlew build doesn’t do it for me, as I get stuck on this error message:

Task ‘:components:nfc:tools:impl:mergeInternalNativeLibs’ uses this output of task ‘:components:nfc:tools:impl:externalNativeBuildRelease’ without declaring an explicit or implicit dependency.

How does CI build it?

This does it: ./gradlew :instances:app:assembleInternal :instances:app:bundleInternal
Found in https://github.com/flipperdevices/Flipper-Android-App/blob/dev/.github/workflows/internal.yml

1 Like

Thanks for sharing!