You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 27, 2022. It is now read-only.
In the package dependencies it specifies api(group: "androidx.work", name: "work-runtime") { version { strictly "2.6.0" } }
The problem is that in this group I think there are some work packages that are incompatible with Android 12 at this 2.6.0 version, one of which appears to be : androidx.work:work-runtime-ktx
So when using another package, for example react-native-firebase/auth it will crash because that package is restricted to 2.6.0 with android 12 FLAG_IMMUTABLE shenanigans mess. In my quick testing changing this 2.7.1 resolves this. I dont know if you could change this, or possibly only restrict certain packages and not the whole group. I imagine you did this because you only wanted to release this package with what you have tested? Thanks