Skip to content

Commit

Permalink
chore(cli): bump default minSdkVersion to 23 (#7675)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Sep 26, 2024
1 parent 87601ac commit 2e03a9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion capacitor-cordova-android-plugins/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
namespace "capacitor.cordova.android.plugins"
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34
defaultConfig {
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34
versionCode 1
versionName "1.0"
Expand Down
2 changes: 1 addition & 1 deletion cli/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ async function loadAndroidConfig(

return {
name,
minVersion: '22',
minVersion: '23',
studioPath,
platformDir,
platformDirAbs,
Expand Down

0 comments on commit 2e03a9a

Please sign in to comment.