Posts by Matheus Silva • 58 points
7 posts
-
1
votes0
answers106
viewsQ: How to run an Expokit project on a mobile phone/emulator for development?
I had a project done in Expo, but ejected it using Expokit, which creates the folders /android and /Ios, I can generate the apk however I can not emulate on my mobile for development. The command I…
-
0
votes3
answers2202
viewsA: Test an App on android. React Native
You can do this either by using the Expo or the other CLI. But if the project is simple and does not need many native settings I recommend the expo. Just run the command: expo start That it will…
-
0
votes1
answer1151
viewsQ: How to generate APK from an Expokit project?
I was with an Expo project, but due to the need to apply payment methods I had to eject the project to have the folders /android and /Ios to edit them directly. I decided to use React-Native-iap, so…
-
1
votes2
answers2621
viewsA: Redirect to "Home" screen after login validation - React Native + Firebase
Try this, as you can see it keeps watching if any user authenticated, and then redirects it. That was his question? componentDidMount() { firebase.auth().onAuthStateChanged(user => { if (user !=…
-
1
votes1
answer151
viewsQ: How to queue requests for an api made with Laravel?
I have an api made in Laravel 5.6, where requests cannot be executed simultaneously and are queued to be executed in the request order. It’s hard to explain an example, but if anyone can help me I’d…
-
0
votes1
answer304
viewsA: How to authenticate in Firebase through Google using Expo (React Native)?
I managed to solve, I did it this way: I simply added the ID’s there under "Add Client Ids to..."…
-
0
votes1
answer304
viewsQ: How to authenticate in Firebase through Google using Expo (React Native)?
I have a web application on firebase, but I’m using it in the development of an android/Ios app using Expo. I want the authentication to be done by Google, but it turns out that because it was…