-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathbuild.gradle
41 lines (36 loc) · 1.56 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
apply plugin: "com.android.application"
android {
compileSdk 33
defaultConfig {
applicationId "com.example.android.testing.androidtestorchestratorsample"
minSdkVersion 19
targetSdkVersion 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArguments clearPackageData: "true"
testInstrumentationRunnerArguments useTestStorageService: "true"
}
buildTypes {
debug {
testCoverageEnabled true
}
}
testOptions {
execution "ANDROIDX_TEST_ORCHESTRATOR"
}
namespace "com.example.android.testing.androidtestorchestratorsample"
}
dependencies {
// App's dependencies, including test
implementation "androidx.annotation:annotation:" + rootProject.androidxAnnotationVersion
implementation "com.google.guava:guava:" + rootProject.guavaVersion
// Testing-only dependencies
androidTestImplementation "androidx.test:core:" + rootProject.coreVersion
androidTestImplementation "androidx.test.ext:junit:" + rootProject.extJUnitVersion
androidTestImplementation "androidx.test:runner:" + rootProject.runnerVersion
androidTestImplementation "androidx.test.espresso:espresso-core:" + rootProject.espressoVersion
androidTestImplementation "com.google.truth:truth:" + rootProject.truthVersion;
androidTestUtil "androidx.test:orchestrator:" + rootProject.orchestratorVersion
androidTestUtil "androidx.test.services:test-services:" + rootProject.testServicesVersion
}