1
- apply plugin : ' com.android.application'
1
+ apply plugin : " com.android.application"
2
2
3
- apply plugin : ' kotlin-android'
3
+ apply plugin : " kotlin-android"
4
4
5
5
android {
6
6
compileSdk 33
@@ -33,8 +33,8 @@ android {
33
33
}
34
34
}
35
35
}
36
- namespace ' com.example.android.testing.espresso.BasicSample'
37
- testNamespace ' com.example.android.testing.espresso.BasicSample.test'
36
+ namespace " com.example.android.testing.espresso.BasicSample"
37
+ testNamespace " com.example.android.testing.espresso.BasicSample.test"
38
38
lint {
39
39
abortOnError false
40
40
}
@@ -48,23 +48,23 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
48
48
49
49
dependencies {
50
50
// App dependencies
51
- implementation ' androidx.annotation:annotation:' + rootProject. androidxAnnotationVersion;
52
- implementation ' com.google.guava:guava:' + rootProject. guavaVersion
51
+ implementation " androidx.annotation:annotation:" + rootProject. androidxAnnotationVersion;
52
+ implementation " com.google.guava:guava:" + rootProject. guavaVersion
53
53
54
54
// Testing-only dependencies
55
55
androidTestImplementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion "
56
- androidTestImplementation ' androidx.test:core:' + rootProject. coreVersion
57
- androidTestImplementation ' androidx.test:core-ktx:' + rootProject. coreVersion
58
- androidTestImplementation ' androidx.test.ext:junit:' + rootProject. extJUnitVersion
59
- androidTestImplementation ' androidx.test.ext:junit-ktx:' + rootProject. extJUnitVersion
60
- androidTestImplementation ' androidx.test:runner:' + rootProject. runnerVersion
61
- androidTestImplementation ' androidx.test.espresso:espresso-core:' + rootProject. espressoVersion
56
+ androidTestImplementation " androidx.test:core:" + rootProject. coreVersion
57
+ androidTestImplementation " androidx.test:core-ktx:" + rootProject. coreVersion
58
+ androidTestImplementation " androidx.test.ext:junit:" + rootProject. extJUnitVersion
59
+ androidTestImplementation " androidx.test.ext:junit-ktx:" + rootProject. extJUnitVersion
60
+ androidTestImplementation " androidx.test:runner:" + rootProject. runnerVersion
61
+ androidTestImplementation " androidx.test.espresso:espresso-core:" + rootProject. espressoVersion
62
62
63
- testImplementation ' androidx.test:core:' + rootProject. coreVersion;
64
- testImplementation ' androidx.test.ext:junit:' + rootProject. extJUnitVersion
65
- testImplementation ' junit:junit:4.12'
66
- testImplementation ' org.robolectric:robolectric:' + rootProject. robolectricVersion
67
- testImplementation ' androidx.test.espresso:espresso-core:' + rootProject. espressoVersion
68
- testImplementation ' androidx.test.espresso:espresso-intents:' + rootProject. espressoVersion
69
- testImplementation ' androidx.test.ext:truth:' + rootProject. extTruthVersion
63
+ testImplementation " androidx.test:core:" + rootProject. coreVersion;
64
+ testImplementation " androidx.test.ext:junit:" + rootProject. extJUnitVersion
65
+ testImplementation " junit:junit:4.12"
66
+ testImplementation " org.robolectric:robolectric:" + rootProject. robolectricVersion
67
+ testImplementation " androidx.test.espresso:espresso-core:" + rootProject. espressoVersion
68
+ testImplementation " androidx.test.espresso:espresso-intents:" + rootProject. espressoVersion
69
+ testImplementation " androidx.test.ext:truth:" + rootProject. extTruthVersion
70
70
}
0 commit comments