build.gradle.kts 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. plugins {
  2. id("com.android.test")
  3. kotlin("android")
  4. id("tachiyomi.lint")
  5. }
  6. android {
  7. namespace = "tachiyomi.macrobenchmark"
  8. compileSdk = AndroidConfig.compileSdk
  9. compileOptions {
  10. sourceCompatibility = JavaVersion.VERSION_1_8
  11. targetCompatibility = JavaVersion.VERSION_1_8
  12. }
  13. kotlinOptions {
  14. jvmTarget = JavaVersion.VERSION_1_8.toString()
  15. }
  16. defaultConfig {
  17. minSdk = AndroidConfig.minSdk
  18. targetSdk = AndroidConfig.targetSdk
  19. testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
  20. }
  21. buildTypes {
  22. // This benchmark buildType is used for benchmarking, and should function like your
  23. // release build (for example, with minification on). It's signed with a debug key
  24. // for easy local/CI testing.
  25. create("benchmark") {
  26. isDebuggable = true
  27. signingConfig = getByName("debug").signingConfig
  28. matchingFallbacks += listOf("release")
  29. }
  30. }
  31. targetProjectPath = ":app"
  32. experimentalProperties["android.experimental.self-instrumenting"] = true
  33. }
  34. dependencies {
  35. implementation(androidx.test.ext)
  36. implementation(androidx.test.espresso.core)
  37. implementation(androidx.test.uiautomator)
  38. implementation(androidx.benchmark.macro)
  39. }
  40. androidComponents {
  41. beforeVariants(selector().all()) {
  42. it.enable = it.buildType == "benchmark"
  43. }
  44. }