Hello everyone,
I have a desktop application that I have adapted for mobile using Capacitor. It is a basic Angular web application.
I managed to publish a test version for iOS on the App Store, but I’m having trouble with Android and the Play Store.
I successfully generated the app-release.aab and published it on the Play Store console.
But I can’t connect and contact the server where my connection APIs are located.
Do you have any advice or ideas for the Android part?
Thank you
Is your API using HTTPS? If not, Android will block the requests by default. If you aren’t, it is 2025 and you should always using SSL in production 
Ofc i’m using https, but currently it’s like my app doesnt reach my server where is my back in C#. And i dont know what to do
Any errors in LogCat in Android Studio? Also check DevTools while debugging your app via Android Studio by going to chrome://inspect/#devices in Chrome.
Please share some code showing how you are making the HTTP requests. Are you using Capacitor HTTP or just the web stack to make requests?