Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try reverting Android minSdk to 21 #901

Merged
merged 3 commits into from Aug 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 @@ -34,7 +34,7 @@ android {
}

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

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

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

Expand Down