-
Notifications
You must be signed in to change notification settings - Fork 619
Add custom signal limits link and fix Javadoc List Formatting #6722
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
Conversation
Javadoc Changes:--- /home/runner/diff/original/firebase-kotlindoc/android/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html 2025-02-26 05:31:13.600445054 +0000
+++ /home/runner/diff/modified/firebase-kotlindoc/android/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html 2025-02-26 05:28:09.964231032 +0000
@@ -987,7 +987,7 @@
<h3 class="api-name" id="setCustomSignals(com.google.firebase.remoteconfig.CustomSignals)">setCustomSignals</h3>
<pre class="api-signature no-pretty-print">public @<a href="https://developer.android.com/reference/kotlin/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developers.google.com/android/reference/com/google/android/gms/tasks/Task.html">Task</a><<a href="https://developer.android.com/reference/kotlin/java/lang/Void.html">Void</a>> <a href="/docs/reference/android/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html#setCustomSignals(com.google.firebase.remoteconfig.CustomSignals)">setCustomSignals</a>(@<a href="https://developer.android.com/reference/kotlin/androidx/annotation/NonNull.html">NonNull</a> <a href="/docs/reference/android/com/google/firebase/remoteconfig/CustomSignals.html">CustomSignals</a> customSignals)</pre>
<p>Asynchronously changes the custom signals for this <code><a href="/docs/reference/android/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html">FirebaseRemoteConfig</a></code> instance. </p>
- <p>Custom signals are subject to limits on the size of key/value pairs and the total number of signals. Any calls that exceed these limits will be discarded.</p>
+ <p>Custom signals are subject to limits on the size of key/value pairs and the total number of signals. Any calls that exceed these limits will be discarded. See <a href="https://firebase.google.com/docs/remote-config/parameters?template_type=client#custom-signal-limits">Custom Signal Limits</a>.</p>
<div class="devsite-table-wrapper">
<table class="responsive">
<colgroup>
@@ -1004,11 +1004,11 @@
<td><code>@<a href="https://developer.android.com/reference/kotlin/androidx/annotation/NonNull.html">NonNull</a> <a href="/docs/reference/android/com/google/firebase/remoteconfig/CustomSignals.html">CustomSignals</a> customSignals</code></td>
<td>
<p>The custom signals to set for this instance. </p>
- <ol>
+ <ul>
<li>New keys will add new key-value pairs in the custom signals. </li>
<li>Existing keys with new values will update the corresponding signals. </li>
<li>Setting a key's value to <code>null</code> will remove the associated signal. </li>
- </ol>
+ </ul>
</td>
</tr>
</tbody> --- /home/runner/diff/original/firebase-kotlindoc/kotlin/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html 2025-02-26 05:31:13.595445048 +0000
+++ /home/runner/diff/modified/firebase-kotlindoc/kotlin/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html 2025-02-26 05:28:09.947231008 +0000
@@ -1004,7 +1004,7 @@
<h3 class="api-name" id="setCustomSignals(com.google.firebase.remoteconfig.CustomSignals)">setCustomSignals</h3>
<pre class="api-signature no-pretty-print">fun <a href="/docs/reference/kotlin/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html#setCustomSignals(com.google.firebase.remoteconfig.CustomSignals)">setCustomSignals</a>(customSignals: <a href="/docs/reference/kotlin/com/google/firebase/remoteconfig/CustomSignals.html">CustomSignals</a>): <a href="https://developers.google.com/android/reference/com/google/android/gms/tasks/Task.html">Task</a><<a href="https://developer.android.com/reference/kotlin/java/lang/Void.html">Void</a>!></pre>
<p>Asynchronously changes the custom signals for this <code><a href="/docs/reference/kotlin/com/google/firebase/remoteconfig/FirebaseRemoteConfig.html">FirebaseRemoteConfig</a></code> instance. </p>
- <p>Custom signals are subject to limits on the size of key/value pairs and the total number of signals. Any calls that exceed these limits will be discarded.</p>
+ <p>Custom signals are subject to limits on the size of key/value pairs and the total number of signals. Any calls that exceed these limits will be discarded. See <a href="https://firebase.google.com/docs/remote-config/parameters?template_type=client#custom-signal-limits">Custom Signal Limits</a>.</p>
<div class="devsite-table-wrapper">
<table class="responsive">
<colgroup>
@@ -1021,11 +1021,11 @@
<td><code>customSignals: <a href="/docs/reference/kotlin/com/google/firebase/remoteconfig/CustomSignals.html">CustomSignals</a></code></td>
<td>
<p>The custom signals to set for this instance. </p>
- <ol>
+ <ul>
<li>New keys will add new key-value pairs in the custom signals. </li>
<li>Existing keys with new values will update the corresponding signals. </li>
<li>Setting a key's value to <code>null</code> will remove the associated signal. </li>
- </ol>
+ </ul>
</td>
</tr>
</tbody> |
Generated by 🚫 Danger |
Coverage Report 1Affected ProductsNo changes between base commit (1e8c218) and merge commit (f26d378).Test Logs |
Test Results 42 files + 8 42 suites +8 1m 19s ⏱️ +20s Results for commit 3f0ddc2. ± Comparison against base commit 1e8c218. This pull request removes 188 and adds 322 tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
Size Report 1Affected Products
Test Logs |
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.
LGTM
Add link to documentation about custom signal limits (b/385028620) and Update setCustomSignals Javadoc List Formatting (b/390054823)