Description
Hi there.
As of today many faced an issue with building RN apps due to major release by google.
Details are here: RN issue
The main way to fix this is to upgrade your app to Androidx.
Android studio has a way to update dependencies sort of automatically, but bottomsheet is one that can not be updated.
Here is Gradle sync error after one adds
android.useAndroidX=true android.enableJetifier=true
to gradle.properties according to manual.
Unable to resolve dependency for ':react-native-bottomsheet@debug/compileClasspath': Failed to transform file 'bottomsheet-1.3.1.aar' to match attributes {artifactType=processed-aar} using transform JetifyTransform
This prevents me from migrating project to Androidx and thus from ability to further build.
I see this references native bottomsheet library and not your wrapper directly.
Hopefully you might know the reason Jettifier can not transform this exact aar or have other thoughts on this.