Skip to content

Commit

Permalink
fix: minSdkVersion mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Geron committed Aug 18, 2023
1 parent ade6566 commit a880bed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
buildscript {
ext {
buildToolsVersion = "31.0.0"
minSdkVersion = 21
compileSdkVersion = 31
targetSdkVersion = 31
minSdkVersion = rootProject.ext.minSdkVersion
compileSdkVersion = rootProject.ext.targetSdkVersion
targetSdkVersion = rootProject.ext.targetSdkVersion
kotlin_version = '1.6.0'
if (System.properties['os.arch'] == "aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
Expand Down

0 comments on commit a880bed

Please sign in to comment.