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

dropped instrumentation tests #47

Merged
merged 2 commits into from
Aug 10, 2024
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
10 changes: 1 addition & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,4 @@ jobs:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
- name: Instrumentation Tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29 # current max API level supported 29
arch: x86_64
disable-animations: true
disk-size: 6000M
heap-size: 600M
script: make clean android-test

2 changes: 1 addition & 1 deletion chai/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies {

implementation(libs.androidx.core.ktx)
implementation(platform(libs.androidx.compose.bom))
implementation ("androidx.compose.material3:material3:1.2.1")
implementation (libs.material3)
implementation(libs.androidx.appcompat)
implementation(libs.material)
implementation(libs.androidx.runtime.android)
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ lifecycleRuntimeKtx = "2.8.4"
activityCompose = "1.9.1"
jetbrainsKotlinJvm = "2.0.0"
appcompatVersion = "1.7.0"
material3 = "1.2.1"
materialVersion = "1.12.0"
runtimeAndroid = "1.6.8"
material3Android = "1.2.1"
Expand Down Expand Up @@ -41,6 +42,7 @@ material = { group = "com.google.android.material", name = "material", version.r
androidx-runtime-android = { group = "androidx.compose.runtime", name = "runtime-android", version.ref = "runtimeAndroid" }
androidx-material3-android = { group = "androidx.compose.material3", name = "material3-android", version.ref = "material3Android" }
androidx-ui-tooling-preview-android = { group = "androidx.compose.ui", name = "ui-tooling-preview-android", version.ref = "uiToolingPreviewAndroid" }
material3 = { module = "androidx.compose.material3:material3", version.ref = "material3" }


[plugins]
Expand Down
Loading