• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import org.robolectric.gradle.AndroidProjectConfigPlugin
2
3apply plugin: 'com.android.library'
4apply plugin: AndroidProjectConfigPlugin
5
6android {
7    compileSdk 33
8
9    defaultConfig {
10        minSdk 16
11        targetSdk 33
12    }
13
14    compileOptions {
15        sourceCompatibility = '1.8'
16        targetCompatibility = '1.8'
17    }
18
19    testOptions.unitTests.includeAndroidResources true
20}
21
22dependencies {
23    // Testing dependencies
24    testImplementation project(path: ':testapp')
25    testImplementation project(":robolectric")
26    testImplementation project(":integration_tests:agp:testsupport")
27
28    testImplementation "junit:junit:${junitVersion}"
29    testImplementation("androidx.test:core:$axtCoreVersion")
30    testImplementation("androidx.test:runner:$axtRunnerVersion")
31    testImplementation("androidx.test.ext:junit:$axtJunitVersion")
32}
33