Support Android 16#639
Merged
Merged
Conversation
Signed-off-by: Arnau Mora <arnyminerz@proton.me>
Signed-off-by: Arnau Mora <arnyminerz@proton.me>
Closed
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds support for Android 16 by upgrading the target and compile SDK versions to API level 36 and updating bitfire dependencies to newer versions that support 16 KB page sizes, which will be required after November 1st.
- Upgrade Android SDK levels from 35 to 36 for both compile and target SDK
- Update bitfire-cert4android dependency from version f0964cb to 41009d48ed
- Update bitfire-synctools dependency from version 7aa709f6b6 to ebf0e1f6f1
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| gradle/libs.versions.toml | Updates bitfire dependency versions to support 16 KB page sizes |
| app/build.gradle.kts | Increases compileSdk and targetSdk from 35 to 36 for Android 16 support |
Comments suppressed due to low confidence (2)
app/build.gradle.kts:14
- Android API level 36 does not exist as of my knowledge cutoff in January 2025. The latest Android API level is 35 (Android 15). Please verify that API level 36 is available and corresponds to Android 16.
compileSdk = 36
app/build.gradle.kts:21
- Android API level 36 does not exist as of my knowledge cutoff in January 2025. The latest Android API level is 35 (Android 15). Please verify that API level 36 is available and corresponds to Android 16.
targetSdk = 36
Signed-off-by: Arnau Mora <arnyminerz@proton.me>
Signed-off-by: Arnau Mora <arnyminerz@proton.me>
Signed-off-by: Arnau Mora <arnyminerz@proton.me>
Signed-off-by: Arnau Mora <arnyminerz@proton.me>
sunkup
approved these changes
Aug 11, 2025
Member
sunkup
left a comment
There was a problem hiding this comment.
Nice. Let's see to it that we update synctools soon as well.
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.
Purpose
We should support Android 16 as soon as possible.
Also 16 KB page sizes won't be supported after November 1st (or after upgrading to A16), and we are still, using an old version of Conscrypt,
so we should also upgrade our dependencies: bitfireAT/cert4android@55903a1Edit: Synctools upgrade requires a lot of changes, so I'd delay it to a different PR.
Short description
Increase SDK level to 36, upgrade
bitfire dependenciesconscrypt.Checklist