Use targetSdk 33, Android 13
See original GitHub issue📆 Due before: November 1, 2023.
Background
- Meet Google Play’s target API level requirement
- Target API level requirements for the Play Console
- Target API level requirements for Google Play apps
- Android 13 features and changes list
- Android 13 behavior changes: all apps
- Android 13 behavior changes: apps targeting Android 13
- Android 13 features and APIs
- Some dependencies require
compileSdk 32
, somecompileSdk 33
, see Dependencies.kt
Current state
targetSdk 31
Target state
-
targetSdk 33
- Remove/replace deprecated code with new APIs.
- Inspect for new deprecations via
-Xlint:deprecation
.
- Inspect for new deprecations via
- Check documentation for changes and add here.
Dependents
compileSdk 32
is required by the following libraries:androidx.appcompat:appcompat:1.5.0
compileSdk 33
is required by the following libraries:androidx.core:core-ktx:1.9.0
Related
Issue Analytics
- State:
- Created a year ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Is it safe to target sdk version 33 (Android 13)?
I would say - it depends on your app, but mostly sure, it's safe. For example, we faced a couple of issues with...
Read more >Set up the Android 13 SDK
Click Tools > SDK Manager. In the SDK Platforms tab, select Android Tiramisu Preview. In the SDK Tools tab, select Android SDK Build-Tools...
Read more >Migrating My App To Android 13
Lessons Learned from updating my app to targetSdkVersion 33 ... Alternative way: Use the Android 13 Photo Picker.
Read more >Set compileSdk and targetSdk to 33 (Android 13) #9306
Changing the target sdk also required updating LeakCanary to the latest version as the older version being used was not using ...
Read more >API Levels | Android versions, SDK/API levels, version codes ...
Version SDK / API level Version code Codename Cumulative usage Year
Android 13 Level 33 TIRAMISU Tiramisu 2.0% 2022
Android 12 Level 32 Android 12L...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I recently had a look at this and documented the current state, see https://github.com/EventFahrplan/EventFahrplan/commit/ea3488ce062e5a4f8b2603524e8ee7277ad31969. I would keep the topic separate from the SDK work to be addressed in the future.
Update: I updated
compileSdkVersion
,targetSdkVersion
, and the Dependencies listed in the original Post. After that, I had a look at newly Deprecated code (Found and Updated 1). Also, I’ve already implemented Per-App Translation and am working on parsing through other updates to implement.