Skip to content

Commit

Permalink
Target android SDK 33 (fixes #1970)
Browse files Browse the repository at this point in the history
  • Loading branch information
imsodin committed Sep 6, 2023
1 parent c472b0e commit 8cd20d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ dependencies {

android {
// Changes to these values need to be reflected in `../docker/Dockerfile`
compileSdkVersion 32
buildToolsVersion '32.0.0'
compileSdkVersion 33
buildToolsVersion '33.0.2'
ndkVersion = "${ndkVersionShared}"

buildTypes.debug.applicationIdSuffix ".debug"
Expand All @@ -36,7 +36,7 @@ android {
defaultConfig {
applicationId "com.nutomic.syncthingandroid"
minSdkVersion 21
targetSdkVersion 32
targetSdkVersion 33
versionCode 4362
versionName "1.24.0-rc.1"
testApplicationId 'com.nutomic.syncthingandroid.test'
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN yes | $SDKMANAGER --licenses > /dev/null
ENV NDK_VERSION 25.2.9519653

# Install other android packages, including NDK
RUN $SDKMANAGER tools platform-tools "build-tools;32.0.0" "platforms;android-32" "extras;android;m2repository" "ndk;${NDK_VERSION}"
RUN $SDKMANAGER tools platform-tools "build-tools;33.0.2" "platforms;android-32" "extras;android;m2repository" "ndk;${NDK_VERSION}"

# Accept licenses of newly installed packages
RUN yes | $SDKMANAGER --licenses
Expand Down

0 comments on commit 8cd20d7

Please sign in to comment.