1- apply plugin : ' com.android.application'
1+ apply plugin : " com.android.application"
22
33android {
44 compileSdk 33
@@ -10,19 +10,19 @@ android {
1010 versionName " 1.0"
1111
1212 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
13- testInstrumentationRunnerArguments clearPackageData : ' true'
13+ testInstrumentationRunnerArguments clearPackageData : " true"
1414 }
1515 buildTypes {
1616 release {
1717 minifyEnabled false
18- proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
18+ proguardFiles getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro"
1919 }
2020 }
2121 productFlavors {
2222 }
2323
2424 testOptions {
25- execution ' ANDROIDX_TEST_ORCHESTRATOR'
25+ execution " ANDROIDX_TEST_ORCHESTRATOR"
2626 managedDevices {
2727 devices {
2828 // run with ../gradlew nexusOneApi30DebugAndroidTest
@@ -36,21 +36,21 @@ android {
3636 }
3737 }
3838 }
39- namespace ' com.example.android.testing.androidtestorchestratorsample'
39+ namespace " com.example.android.testing.androidtestorchestratorsample"
4040}
4141
4242dependencies {
43- // App' s dependencies, including test
44- implementation ' androidx.annotation:annotation:' + rootProject. androidxAnnotationVersion;
45- implementation ' com.google.guava:guava:' + rootProject. guavaVersion
43+ // App" s dependencies, including test
44+ implementation " androidx.annotation:annotation:" + rootProject. androidxAnnotationVersion;
45+ implementation " com.google.guava:guava:" + rootProject. guavaVersion
4646
4747 // Testing-only dependencies
48- androidTestImplementation ' androidx.test:core:' + rootProject. coreVersion;
49- androidTestImplementation ' androidx.test.ext:junit:' + rootProject. extJUnitVersion;
50- androidTestImplementation ' androidx.test:runner:' + rootProject. runnerVersion;
51- androidTestImplementation ' androidx.test:monitor:' + rootProject. monitorVersion;
52- androidTestImplementation ' androidx.test.espresso:espresso-core:' + rootProject. espressoVersion;
53- androidTestImplementation ' com.google.truth:truth:' + rootProject. truthVersion;
54- androidTestUtil ' androidx.test:orchestrator:' + rootProject. orchestratorVersion;
48+ androidTestImplementation " androidx.test:core:" + rootProject. coreVersion;
49+ androidTestImplementation " androidx.test.ext:junit:" + rootProject. extJUnitVersion;
50+ androidTestImplementation " androidx.test:runner:" + rootProject. runnerVersion;
51+ androidTestImplementation " androidx.test:monitor:" + rootProject. monitorVersion;
52+ androidTestImplementation " androidx.test.espresso:espresso-core:" + rootProject. espressoVersion;
53+ androidTestImplementation " com.google.truth:truth:" + rootProject. truthVersion;
54+ androidTestUtil " androidx.test:orchestrator:" + rootProject. orchestratorVersion;
5555
5656}
0 commit comments