Skip to content

Commit f5c90ec

Browse files
committed
android build: Bump compileSdkVersion to 33, aka Android 13
This version is out; time to start using it in the build. This setting is not to be confused with the targetSdkVersion. The latter goes into the built manifest, and affects a wide range of behavior, so bumping it requires careful testing. This is used purely at build time, and should have no effect on runtime behavior. Its main effect is that it become possible for code to conditionally use new API features. It also brings new compiler warnings -- hence the pair of library updates preceding this.
1 parent 6b59b1e commit f5c90ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919
// https://medium.com/androiddevelopers/picking-your-compilesdkversion-minsdkversion-targetsdkversion-a098a0341ebd
2020
// What's the latest? Consult this list:
2121
// https://developer.android.com/studio/releases/platforms
22-
compileSdkVersion = 31
22+
compileSdkVersion = 33
2323
}
2424
repositories {
2525
google()

0 commit comments

Comments
 (0)