Skip to content

Commit 3e3c366

Browse files
authored
chore(okhttp): Fix CI by setting minSdk=24 (#1835)
* chore(okhttp): Fix CI * Update CHANGELOG.md
1 parent 6271faf commit 3e3c366

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/okhttp.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
# - .github/workflows/okhttp.yml
5959
# - pkgs/ok_http/android/build.gradle
6060
# - pkgs/ok_http/example/android/app/build.gradle
61-
api-level: 21
61+
api-level: 24
62+
disable-animations: true
6263
arch: x86_64
6364
script: cd pkgs/ok_http/example && flutter test --timeout=1200s integration_test/

pkgs/ok_http/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- Upgrade to `jnigen` 0.14.0
77
- `OKHttpClient` supports client certificates.
88
- Support `package:web_socket` 1.0.0.
9+
- Set `minSdk=24`.
910

1011
## 0.1.0
1112

pkgs/ok_http/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ android {
5656
}
5757

5858
defaultConfig {
59-
minSdk = 21
59+
minSdk = 24
6060
}
6161
}
6262

0 commit comments

Comments
 (0)