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
First of all I want to thank you for creating this package! Today I went to work on my project using this package and suddenly the build on android started failing with this error:
> Task :react-native-shared-group-preferences:compileReleaseJavaWithJavac FAILED
/path/to/my/project/node_modules/react-native-shared-group-preferences/android/src/main/java/com/poppop/RNReactNativeSharedGroupPreferences/RNReactNativeSharedGroupPreferencesModule.java:12: error: cannot find symbol
import android.support.v4.app.ActivityCompat;
^
symbol: class ActivityCompat
location: package android.support.v4.app
1 error
I found out, that after replacing import android.support.v4.app.ActivityCompat;
with import androidx.core.app.ActivityCompat;
I am able to run the builds again. Can you have a look at this issue please?
Thanks!
The text was updated successfully, but these errors were encountered:
Hi!
First of all I want to thank you for creating this package! Today I went to work on my project using this package and suddenly the build on android started failing with this error:
I found out, that after replacing
import android.support.v4.app.ActivityCompat;
with
import androidx.core.app.ActivityCompat;
I am able to run the builds again. Can you have a look at this issue please?
Thanks!
The text was updated successfully, but these errors were encountered: