Meteor run android (can't not connection with database)

meteor version :2.XX
When I ran meteor run android It couldn’t connect with the database.
but when I run meteor run ios it’s worked with the database.

Hi Bonas!

Try adding the following code to your mobile-config.js

App.appendToConfig(`
    <edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application" xmlns:android="http://schemas.android.com/apk/res/android">
        <application android:usesCleartextTraffic="true"></application>
    </edit-config>
`);
1 Like

Thank you,
I’ll try to do it.