'React native app crashing on android 12+ on emulator

I am currently working on building a music app Wavelet. Here's my dependencies: package.json

I usually debug on an Android 11 emulator, but when using an Android 12 emulator and my physical device on Android 12L it crashes.

I was able to pick this log from my physical device.



Solution 1:[1]

Go into build.gradle and find dependencies

Look for androidx.work:work-runtime-ktx...

Add or update it to:

// fix for crash API 31
implementation "androidx.work:work-runtime-ktx:2.7.0"

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 RamaProg