diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2024-09-10 23:46:21 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2024-09-10 23:50:27 +0200 |
| commit | 994672608db65a68b3ba3db8fa37bb613de89c20 (patch) | |
| tree | 4873d7177a7949f7e1501e9494e2897e2da35d03 /buildSrc/src/main/groovy | |
| parent | 3e1b734cd804dbdb8bff8bbdc944a0fd141bed75 (diff) | |
Add libs:documents
Reads the abomination that is SAF, or Androids best effort to make
files and directories completely and utterly unusable on Android.
The androidTest was (and is) a pain, only known to work on a
Pixel3 API 34 emulator but it showed a lot of things that the
fake content provider in the unit tests failed to show.
Diffstat (limited to 'buildSrc/src/main/groovy')
| -rw-r--r-- | buildSrc/src/main/groovy/the_jk.android-conventions.gradle | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/buildSrc/src/main/groovy/the_jk.android-conventions.gradle b/buildSrc/src/main/groovy/the_jk.android-conventions.gradle index 09d3211..d14761f 100644 --- a/buildSrc/src/main/groovy/the_jk.android-conventions.gradle +++ b/buildSrc/src/main/groovy/the_jk.android-conventions.gradle @@ -42,6 +42,14 @@ dependencies { testImplementation(libs.junit) testImplementation(libs.robolectric) testImplementation(libs.truth) + + androidTestImplementation(libs.androidx.espresso.core) + androidTestImplementation(libs.androidx.junit) + androidTestImplementation(libs.androidx.test.core) + androidTestImplementation(libs.androidx.test.rules) + androidTestImplementation(libs.androidx.test.runner) + androidTestImplementation(libs.truth) + androidTestUtil(libs.androidx.orchestrator) } detekt { |
