This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<network-security-config> | |
<domain-config cleartextTrafficPermitted="true"> | |
<!-- | |
Allow traffic to the Firebase Emulator Suite | |
See: https://developer.android.com/training/articles/security-config#CleartextTrafficPermitted | |
--> | |
<domain includeSubdomains="true">192.168.1.38</domain> | |
</domain-config> | |
</network-security-config> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Static constants to give support to emulator connection | |
* */ | |
class FirebaseEmulatorConfig { | |
companion object { | |
/** | |
* Local IP(WLAN connection) of the dev computer | |
* This computer have to run the firebase emulators. | |
* */ |