cooperka / react-native-snackbar

:candy: Material Design "Snackbar" component for Android and iOS.
Other
815 stars 150 forks source link

Update SnackbarModule.java #176

Closed RublevD closed 3 years ago

RublevD commented 3 years ago

I had an issue with bundling android with this error: изображение ***/node_modules/react-native-snackbar/android/src/main/java/com/azendoo/reactnativesnackbar/SnackbarModule.java:129: error: package android.support.design.R does not exist TextView textView = (TextView) snackbarView.findViewById(android.support.design.R.id.snackbar_text);

So I replaced import from native component (that seemed to be deprecated, cause some lines below there was another import with the same code). See this issue https://stackoverflow.com/questions/53606878/androidx-package-android-support-design-r-does-not-exist

After that, everything worked fine

rkbhochalya commented 3 years ago

This can be closed in favor of #177 which fixes the issue as well as cleans code and improves runtime efficiency.