Support latest react-native?
Does anyone figure out how to hurdle the gradle and support the latest react-native?
@geoff8888 I am also using this package recently in [email protected]
Just change node_modules/react-native-smb/android/src/main/java/com/reactlibrarysmbbodaghi/RNSmbModule.java the following 2 imports:
-import android.support.v4.app.ActivityCompat;
-import android.support.v4.content.ContextCompat;
+import androidx.core.app.ActivityCompat;
+import androidx.core.content.ContextCompat;
Patching it currently with patch-package.
Thank you very much! You're the best!
Hi, I sincerely apologize for the delay in addressing this issue. I've been incredibly busy over the past year and just now had the chance to review your comments. Thank you so much, @greifmatthias, for providing the workaround! I'll incorporate this fix into the package and release a new version that supports the latest React Native as soon as possible. I appreciate your patience and support.
Hi, I've just released version 0.2.5, which includes the fix for the issue and supports the latest React Native. Please let me know if you run into any problems.