-
Notifications
You must be signed in to change notification settings - Fork 691
Add reCAPTCHA site key support to FirebaseOptions #8216
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4874ddb
Add reCAPTCHA site key support to FirebaseOptions
rlazo 16cc204
Add changelog entry
rlazo 4d1ec13
Merge branch 'main' into rl.recaptcha.common
rlazo fd03637
Update api.txt file and bump version
rlazo e39e0cf
Add missing entry
rlazo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,114 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <issues format="6" by="lint 8.6.1" type="baseline" client="gradle" dependencies="false" name="AGP (8.6.1)" variant="all" version="8.6.1"> | ||
|
|
||
| <issue | ||
| id="UnusedAttribute" | ||
| message="Attribute `directBootAware` is only used in API level 24 and higher (current min is 23)" | ||
| errorLine1=" android:directBootAware="true"" | ||
| errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> | ||
| <location | ||
| file="src/main/AndroidManifest.xml" | ||
| line="25" | ||
| column="13"/> | ||
| </issue> | ||
|
|
||
| <issue | ||
| id="DiscouragedApi" | ||
| message="Use of `scheduleAtFixedRate` is strongly discouraged because it can lead to unexpected behavior when Android processes become cached (tasks may unexpectedly execute hundreds or thousands of times in quick succession when a process changes from cached to uncached); prefer using `scheduleWithFixedDelay`" | ||
| errorLine1=" scheduler.scheduleAtFixedRate(" | ||
| errorLine2=" ^"> | ||
| <location | ||
| file="src/main/java/com/google/firebase/concurrent/DelegatingScheduledExecutorService.java" | ||
| line="151" | ||
| column="13"/> | ||
| </issue> | ||
|
|
||
| <issue | ||
| id="UnclosedTrace" | ||
| message="The `beginSection()` call is not always closed with a matching `endSection()` because the code in between may return early" | ||
| errorLine1=" Trace.beginSection(name);" | ||
| errorLine2=" ~~~~~~~~~~~~"> | ||
| <location | ||
| file="src/main/java/com/google/firebase/tracing/FirebaseTrace.java" | ||
| line="27" | ||
| column="13"/> | ||
| </issue> | ||
|
|
||
| <issue | ||
| id="ObsoleteSdkInt" | ||
| message="Unnecessary; SDK_INT is always >= 23" | ||
| errorLine1=" if (Build.VERSION.SDK_INT >= 23) {" | ||
| errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~"> | ||
| <location | ||
| file="src/main/java/com/google/firebase/concurrent/ExecutorsRegistrar.java" | ||
| line="114" | ||
| column="9"/> | ||
| </issue> | ||
|
|
||
| <issue | ||
| id="ObsoleteSdkInt" | ||
| message="Unnecessary; SDK_INT is always >= 14" | ||
| errorLine1=" @TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH)" | ||
| errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> | ||
| <location | ||
| file="src/main/java/com/google/firebase/FirebaseApp.java" | ||
| line="683" | ||
| column="3"/> | ||
| </issue> | ||
|
|
||
| <issue | ||
| id="ObsoleteSdkInt" | ||
| message="Unnecessary; SDK_INT is always >= 23" | ||
| errorLine1=" if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN" | ||
| errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> | ||
| <location | ||
| file="src/main/java/com/google/firebase/FirebaseCommonRegistrar.java" | ||
| line="77" | ||
| column="19"/> | ||
| </issue> | ||
|
|
||
| <issue | ||
| id="ObsoleteSdkInt" | ||
| message="Unnecessary; SDK_INT is always >= 23" | ||
| errorLine1=" if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT_WATCH" | ||
| errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> | ||
| <location | ||
| file="src/main/java/com/google/firebase/FirebaseCommonRegistrar.java" | ||
| line="81" | ||
| column="19"/> | ||
| </issue> | ||
|
|
||
| <issue | ||
| id="ObsoleteSdkInt" | ||
| message="Unnecessary; SDK_INT is always >= 23" | ||
| errorLine1=" if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M" | ||
| errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> | ||
| <location | ||
| file="src/main/java/com/google/firebase/FirebaseCommonRegistrar.java" | ||
| line="85" | ||
| column="19"/> | ||
| </issue> | ||
|
|
||
| <issue | ||
| id="ObsoleteSdkInt" | ||
| message="Unnecessary; SDK_INT is always >= 23" | ||
| errorLine1=" if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) {" | ||
| errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> | ||
| <location | ||
| file="src/main/java/com/google/firebase/tracing/FirebaseTrace.java" | ||
| line="26" | ||
| column="9"/> | ||
| </issue> | ||
|
|
||
| <issue | ||
| id="ObsoleteSdkInt" | ||
| message="Unnecessary; SDK_INT is always >= 23" | ||
| errorLine1=" if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) {" | ||
| errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> | ||
| <location | ||
| file="src/main/java/com/google/firebase/tracing/FirebaseTrace.java" | ||
| line="32" | ||
| column="9"/> | ||
| </issue> | ||
|
|
||
| </issues> |
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.