Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:

android-emulator:
name: Android Emulator Smoke
runs-on: macos-latest
runs-on: macos-13
if: ${{ github.event_name == 'workflow_dispatch' }}
timeout-minutes: 25
concurrency:
Expand Down Expand Up @@ -129,12 +129,16 @@ jobs:
if: ${{ steps.gradle-wrapper.outputs.available == 'true' }}
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 35
api-level: 30
target: google_apis
arch: arm64-v8a
emulator-boot-timeout: 300
arch: x86_64
profile: pixel_2
emulator-boot-timeout: 180
emulator-options: -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim -no-metrics
working-directory: android
script: ./gradlew connectedDebugAndroidTest
script: |
adb devices -l
./gradlew connectedDebugAndroidTest

- name: Skip emulator smoke tests
if: ${{ steps.gradle-wrapper.outputs.available != 'true' }}
Expand Down
6 changes: 3 additions & 3 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ kotlin {

dependencies {

implementation("androidx.core:core-ktx:1.19.0")
implementation("androidx.appcompat:appcompat:1.7.1")
implementation("com.google.android.material:material:1.14.0")
implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.activity:activity-ktx:1.9.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
testImplementation("junit:junit:4.13.2")
testImplementation("org.json:json:20240303")
androidTestImplementation("androidx.test.ext:junit:1.3.0")
Expand Down
Loading