-
Notifications
You must be signed in to change notification settings - Fork 625
[Remote Config] add useEmulator to Remote Config SDK #3806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Coverage Report 1Affected Products
Test Logs
Notes |
The public api surface has changed for the subproject firebase-config: Please update the api.txt files for the subprojects being affected by this change by running ./gradlew ${subproject}:generateApiTxtFile. Also perform a major/minor bump accordingly. |
Size Report 1Affected Products
Test Logs
Notes |
if (emulatedServiceSettings != null) { | ||
fetchRegexUrl = | ||
"http://" | ||
+ emulatedServiceSettings.getHost() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this handle IPv6 addresses correctly, like bracket-quoting ([::1]
)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes: android docs.
...se-config/src/main/java/com/google/firebase/remoteconfig/internal/ConfigFetchHttpClient.java
Outdated
Show resolved
Hide resolved
The public api surface has changed for the subproject firebase-config: Please update the api.txt files for the subprojects being affected by this change by running ./gradlew ${subproject}:generateApiTxtFile. Also perform a major/minor bump accordingly. |
eb5dee1
to
1e8e87f
Compare
The public api surface has changed for the subproject firebase-config: Please update the api.txt files for the subprojects being affected by this change by running ./gradlew ${subproject}:generateApiTxtFile. Also perform a major/minor bump accordingly. |
1 similar comment
The public api surface has changed for the subproject firebase-config: Please update the api.txt files for the subprojects being affected by this change by running ./gradlew ${subproject}:generateApiTxtFile. Also perform a major/minor bump accordingly. |
/test check-changed |
dcca639
to
0ac6cb0
Compare
0ac6cb0
to
1408b76
Compare
1408b76
to
b5ce88c
Compare
Add
useEmulator
method to allow Remote Config Emulator usage.The
useEmulator
method changes thefetchUrl
to point to the emulator. This is inline withuseEmulator
implementations in other SDKs.