Skip to content

Commit

Permalink
[ci] Fix CI failed after bumping iris_method_channel minSdkVersion to…
Browse files Browse the repository at this point in the history
  • Loading branch information
littleGnAl authored Oct 14, 2024
1 parent 985c67a commit 1692987
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,12 @@ jobs:
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
- uses: actions/checkout@v3
- name: Install JDK
uses: actions/setup-java@v4
with:
java-version: "11"
distribution: 'zulu'
java-version: '17'
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.version }}
Expand Down Expand Up @@ -247,9 +249,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v1
- name: Install JDK
uses: actions/setup-java@v4
with:
java-version: "11"
distribution: 'zulu'
java-version: '17'
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.version }}
Expand All @@ -267,9 +271,11 @@ jobs:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v1
- name: Install JDK
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'zulu'
java-version: '17'
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ matrix.version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-run-ci-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
id: check-contributors-result
uses: actions/github-script@v6
with:
github-token: ${{ secrets.LABEL_ACTION_PAT }}
github-token: ${{ secrets.GH_TOKEN }}
debug: true
script: |
const org = "AgoraIO-Extensions"
Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ android {
applicationId = "io.agora.agorartm.agora_rtm_example"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
minSdkVersion flutter.minSdkVersion
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
Expand Down
2 changes: 1 addition & 1 deletion test_shard/integration_test_app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ android {
applicationId "io.agora.integration_test_app.integration_test_app"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
minSdkVersion flutter.minSdkVersion
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
Expand Down

0 comments on commit 1692987

Please sign in to comment.