Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
- java.lang.Iterable#forEach requires minSdkVersion 24
- defaultConfig > targetSdkVersion 30 should be overridden by parent app, disable the error as it is Play Store specific
  • Loading branch information
DavidBertet committed Aug 11, 2023
1 parent ccf4c04 commit de06213
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ apply plugin: 'kotlin-android'
android {
compileSdkVersion 31
defaultConfig {
minSdkVersion 23
minSdkVersion 24
// noinspection ExpiredTargetSdkVersion
targetSdkVersion 30
versionCode 1
versionName "1.0"
Expand Down
2 changes: 1 addition & 1 deletion example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
buildscript {
ext {
buildToolsVersion = "33.0.0"
minSdkVersion = 23
minSdkVersion = 24
compileSdkVersion = 33
targetSdkVersion = 33
kotlin_version = '1.8.0'
Expand Down

0 comments on commit de06213

Please sign in to comment.