Dercilio Fontes

Results 27 comments of Dercilio Fontes

For me, it was solved with a condition for adding the listener to the app if not 'test'. Jest run as NODE_ENV=test ```typescript if (process.env.NODE_ENV !== 'test') { app.listen(port, ():...

@Mahdi-Soultana, React Router v6 is not supported. You need to use v5.

Same here. Turning off and turning on! ![Screen Shot 2022-06-14 at 12 15 03 PM](https://user-images.githubusercontent.com/20172847/173627747-3118b5b4-000e-4e88-94bf-95fc024abfc1.png) OS: macOS Monterey 12.4 VS Code: Version: 1.68.0 ```text Processes with high usage: dercilio 9080...

"GoogleAuth.init()" is only for WEB (https://github.com/CodetrixStudio/CapacitorGoogleAuth#migrate-from-2-to-3). For Android and iOS is not necessary. I added a condition for checking that: ``` typescript import { Device, DeviceInfo } from "@capacitor/device"; import...

@FabioGoncalves, what are the logs on the Android Studio or Chrome device Dev tools?

@emtiajium , Follow the guide for upgrading Capacitor. It will solve that. https://capacitorjs.com/docs/updating/3-0 Comment or remove the `onCreate` method override. It is not necessary anymore. > Switch to automatic Android...

@codemickey78, Give more info about what you are trying to achieve. Where and when does this error happen?

@codemickey78 , I don't know. The best I found was that about dev environment using https, but working with http. https://github.com/ionic-team/capacitor/issues/4056

Thanks, @ddematheu2. I think it is an important issue. So, for someone that can be facing the same issue and as an update, I got a solution adding a listener...

@dmceachernmsft, I tried to use your suggestion, but it will require changes in my code from how it is implemented now. I'll try when I have more time. Giving more...