Arthur Islamov
Arthur Islamov
No, it is being called twice if you add the code from the workaround. It does not seem to cause any side effects (at least we haven't seen any) but...
@fabriziomoscon @jdegger Hello everyone, sorry for very late reply. Was being busy on other projects. I've updated Twilio SDK to the latest 6.3.0 version, fixed issues with PushKit initialzation that...
I have realized that issue is very easy to reproduce: you need to request twilio token from server each time you launch the app For example ```javascript const token =...
add this to your root build.gradle file ``` subprojects { subproject -> afterEvaluate{ if((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) { android { compileSdkVersion rootProject.ext.compileSdkVersion buildToolsVersion rootProject.ext.buildToolsVersion } } } } ```
I created a pull request for that https://github.com/magus/react-native-facebook-login/pull/340 Until its merged, you can use my fork by adding `"react-native-facebook-login": "git+https://[email protected]/dakenf/react-native-facebook-login",` to your package.json file