Expo dev build for Android internal distribution crashes in emulator

Well, I think the issue it’s indeed with some flipper dependency, but I have none!

According with this RN issue and this flipper issue it seems that I need to bump the flipper version as stated in this comment :

android/gradle.properties
FLIPPER_VERSION=0.144.0

How can I do that on expo for my dev build?

Edit1: Seems to be a mention to flipper in the Run gradlew expo build step:

> Task :react-native-webview:javaPreCompileDebug
> Task :react-native-webview:compileDebugJavaWithJavac
> Task :react-native-webview:bundleLibCompileToJarDebug
[stderr] Note: Some input files use or override a deprecated API.
[stderr] Note: Recompile with -Xlint:deprecation for details.
[stderr] Note: /home/expo/workingdir/build/node_modules/react-native-webview/android/src/main/java/com/reactnativecommunity/webview/RNCWebViewManager.java uses unchecked or unsafe operations.
[stderr] Note: Recompile with -Xlint:unchecked for details.
> Task :app:compileDebugJavaWithJavac
[stderr] Note: /home/expo/workingdir/build/android/app/src/debug/java/com/mgscreativa/demostrador_de_tecnologia/ReactNativeFlipper.java uses or overrides a deprecated API.
[stderr] Note: Recompile with -Xlint:deprecation for details.
> Task :app:compressDebugAssets
> Task :app:processDebugJavaRes NO-SOURCE
> Task :expo:processDebugJavaRes NO-SOURC

Edit2: Tested wit AVD devices with API 29, 30 and 31 and the result is the same, app crashes. I’m starting to think that maybe the issue is some change in Expo SDK 46 that triggers some Flipper usage in development builds, maybe the flipper version bump workaround should help, but I don’t know how to tell expo to do that.