Bump targetSdk to 35 and Gradle to 8.1.0#113
Merged
Merged
Conversation
5734e2e to
06211e4
Compare
9d4c3bd to
d1bbe08
Compare
- Bump compileSdk/targetSdk to 35 and minSdk to 21
- Bump AGP to 8.7.3 and Gradle wrapper to 8.11.1
- Bump Robolectric to 4.14.1 for SDK 35 support
- Add compileOptions/kotlinOptions for JVM target 1.8
- Add ACTION_VIEW/BROWSABLE to <queries> for Custom Tabs
package visibility on API 35
**Breaking Change**: The RedirectUriReceiverActivity intent-filter
must now be declared in the consuming app's AndroidManifest.xml.
The library no longer provides it automatically due to AGP 8.x
AAPT rejecting unresolved ${redirectPathPattern} placeholders
in library manifests. A runtime check throws IllegalStateException
if the intent-filter is missing.
Bump version to 5.0.0.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
d1bbe08 to
fbfbbe5
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
ACTION_VIEW/CATEGORY_BROWSABLEto<queries>for Custom Tabs package visibility on API 35compileOptions/kotlinOptionsfor JVM target 1.8Breaking change
The
RedirectUriReceiverActivityintent-filter must now be declared in the consuming app'sAndroidManifest.xml. The library no longer provides it automatically.Consuming apps must add the following to their manifest:
If your redirect URI uses
https://, addandroid:autoVerify="true"to the<intent-filter>.A runtime check in
AuthorizationClient.authorize()andAuthorizationClient.openLoginInBrowser()throwsIllegalStateExceptionif the intent-filter is missing.See full migration instructions in the README.
Why
${redirectPathPattern}manifest placeholders in library builds — moving the intent-filter to the consuming app resolves this without workaroundsTest plan
./gradlew buildpasses (290 tasks, all unit tests green)🤖 Generated with Claude Code