Skip to content

Commit

Permalink
Use project min, target, and compile sdk versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski committed Nov 27, 2024
1 parent 19f190d commit ea73c4e
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 @@ -25,10 +25,10 @@ apply plugin: 'kotlin-android'

android {
namespace "com.airship.capacitor"
compileSdk 34
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35
defaultConfig {
minSdkVersion 22
targetSdkVersion 34
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down

0 comments on commit ea73c4e

Please sign in to comment.