Skip to content

Commit

Permalink
Update default Android SDK versions (#2537)
Browse files Browse the repository at this point in the history
Update default Android SDK versions

## Description

<!--
Description and motivation for this PR.

Include 'Fixes #<number>' if this is fixing some issue.
-->

## Test plan

<!--
Describe how did you test this change here.
-->

---------

Co-authored-by: Jakub Piasecki <jakubpiasecki67@gmail.com>
  • Loading branch information
makito013 and j-piasecki authored Jul 20, 2023
1 parent a82e859 commit 86d6cef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ repositories {
}

android {
compileSdkVersion safeExtGet("compileSdkVersion", 28)
compileSdkVersion safeExtGet("compileSdkVersion", 33)
def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
if (agpVersion.tokenize('.')[0].toInteger() >= 7) {
namespace "com.swmansion.gesturehandler"
Expand All @@ -189,8 +189,8 @@ android {
}

defaultConfig {
minSdkVersion safeExtGet('minSdkVersion', 16)
targetSdkVersion safeExtGet('targetSdkVersion', 28)
minSdkVersion safeExtGet('minSdkVersion', 21)
targetSdkVersion safeExtGet('targetSdkVersion', 33)
versionCode 1
versionName "1.0"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
Expand Down

0 comments on commit 86d6cef

Please sign in to comment.