Skip to content

Commit

Permalink
Merge pull request #484 from ably/fix-concurency-exception
Browse files Browse the repository at this point in the history
fix: concurrent encryption exception for Android
  • Loading branch information
ttypic authored Sep 29, 2023
2 parents fab9096 + 484747e commit 7e8e034
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/flutter_integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ jobs:
android:
strategy:
matrix:
api-level: [21, 29]
api-level: [24, 29]
fail-fast: false

runs-on: 'ubuntu-latest'
runs-on: 'macos-11'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-java@v3
with:
distribution: 'temurin'
distribution: 'corretto'
java-version: '11'

- uses: subosito/flutter-action@v2
Expand All @@ -62,7 +62,8 @@ jobs:
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: |
flutter pub get
cd test_integration && ./run_integration_tests.sh
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ apply plugin: 'com.android.library'

dependencies {
// https://github.com/ably/ably-java/
implementation 'io.ably:ably-android:1.2.31'
implementation 'io.ably:ably-android:1.2.32'

// https://firebase.google.com/docs/cloud-messaging/android/client
implementation 'com.google.firebase:firebase-messaging:23.0.4'
Expand Down

0 comments on commit 7e8e034

Please sign in to comment.