Skip to content

Commit

Permalink
Merge pull request #901 from aSemy/fix/android_minsdk_23
Browse files Browse the repository at this point in the history
try reverting Android minSdk to 21
  • Loading branch information
Raibaz committed Aug 25, 2022
2 parents cb83dee + c7ac7f2 commit b72cf14
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
api-level: [ 26, 28, 29 ]
api-level: [ 21, 29 ] # The minSdk and targetSdk versions set for MockK Android projects
fail-fast: false # in case one API-level fails, we still want to see results from others
timeout-minutes: 30
steps:
Expand Down
Expand Up @@ -35,7 +35,7 @@ android {
}

defaultConfig {
minSdk = 26
minSdk = 21
targetSdk = 32
}

Expand Down
Expand Up @@ -34,7 +34,7 @@ android {
}

defaultConfig {
minSdk = 26
minSdk = 21
targetSdk = 32
}

Expand Down

0 comments on commit b72cf14

Please sign in to comment.