Achmad Jumandika
Achmad Jumandika
Adding `jcenter()` in root level `build.gradle` works for me. ``` buildscript { ... repositories { mavenCentral() jcenter() } ... allprojects { repositories { mavenCentral() mavenLocal() jcenter() ... } } ```
> > Adding `jcenter()` in root level `build.gradle` works for me. > > ``` > > buildscript { > > ... > > repositories { > > mavenCentral() > >...
Hey, I use RN version `"react-native": "0.66.3"` and I use this dependecy for APIs functionalities `"@react-native-twitter-signin/twitter-signin": "^1.2.0"`
I was following the solution and still not working, but in my case I have to manually request notification permission to make notification showing up in the status bar and...