File tree Expand file tree Collapse file tree 10 files changed +34
-29
lines changed
runner/AndroidTestOrchestratorWithTestCoverageSample
ui/espresso/IntentsAdvancedSample/app Expand file tree Collapse file tree 10 files changed +34
-29
lines changed Original file line number Diff line number Diff line change 1
1
integration/ServiceTestRuleSample
2
2
runner/AndroidJunitRunnerSample
3
3
runner/AndroidTestOrchestratorSample
4
+ runner/AndroidTestOrchestratorWithTestCoverageSample
4
5
ui/espresso/AccessibilitySample
5
6
ui/espresso/BasicSample
6
7
ui/espresso/CustomMatcherSample
@@ -10,10 +11,14 @@ ui/espresso/FragmentScenarioSample
10
11
ui/espresso/IdlingResourceSample
11
12
ui/espresso/IntentsAdvancedSample
12
13
ui/espresso/IntentsBasicSample
14
+ ui/espresso/MultiProcessSample
13
15
ui/espresso/MultiWindowSample
14
16
ui/espresso/MultiProcessSample
15
17
ui/espresso/RecyclerViewSample
16
18
ui/espresso/ScreenshotSample
17
19
ui/espresso/WebBasicSample
18
20
ui/uiautomator/BasicSample
19
21
unit/BasicNativeAndroidTest
22
+ unit/BasicSample
23
+ unit/BasicSample-kotlinApp
24
+ unit/BasicUnitAndroidTest
Original file line number Diff line number Diff line change 1
1
apply plugin : " com.android.application"
2
2
3
3
android {
4
- compileSdk 33
4
+ compileSdk 34
5
5
defaultConfig {
6
6
applicationId " com.example.android.testing.androidtestorchestratorsample"
7
- minSdkVersion 14
8
- targetSdkVersion 33
7
+ minSdkVersion 21
8
+ targetSdkVersion 34
9
9
versionCode 1
10
10
versionName " 1.0"
11
11
Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
buildscript {
4
- ext. agpVersion = " 8.1.1 "
4
+ ext. agpVersion = " 8.5.0 "
5
5
repositories {
6
6
// Insert local test repo here
7
7
google()
@@ -24,14 +24,14 @@ allprojects {
24
24
}
25
25
26
26
ext {
27
- androidxAnnotationVersion = " 1.2 .0"
28
- guavaVersion = " 30.1 .1-android"
29
- coreVersion = " 1.6.0-alpha01 "
30
- extJUnitVersion = " 1.2.0-alpha01 "
31
- runnerVersion = " 1.6.0-alpha03 "
32
- rulesVersion = " 1.6.0-alpha01 "
27
+ androidxAnnotationVersion = " 1.5 .0"
28
+ guavaVersion = " 31 .1-android"
29
+ coreVersion = " 1.6.1 "
30
+ extJUnitVersion = " 1.2.1 "
31
+ runnerVersion = " 1.6.1 "
32
+ rulesVersion = " 1.6.1 "
33
33
testServicesVersion = " 1.5.0-alpha01"
34
- orchestratorVersion = " 1.5.0-alpha01 "
35
- espressoVersion = " 3.6.0-alpha01 "
34
+ orchestratorVersion = " 1.5.0"
35
+ espressoVersion = " 3.6.1 "
36
36
truthVersion = " 1.1.3"
37
37
}
Original file line number Diff line number Diff line change 1
1
apply plugin : " com.android.application"
2
2
3
3
android {
4
- compileSdkVersion 33
4
+ compileSdk 34
5
5
buildToolsVersion = rootProject. buildToolsVersion
6
6
defaultConfig {
7
7
applicationId " com.example.android.testing.espresso.intents.AdvancedSample"
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ apply plugin: "kotlin-android"
5
5
apply plugin : " kotlin-android-extensions"
6
6
7
7
android {
8
- compileSdkVersion 27
8
+ compileSdk 34
9
9
defaultConfig {
10
10
applicationId " com.example.android.testing.unittesting.BasicSample"
11
- minSdkVersion 14
11
+ minSdkVersion 21
12
12
versionCode 1
13
13
versionName " 1.0"
14
- targetSdkVersion 27
14
+ targetSdkVersion 34
15
15
}
16
16
}
17
17
Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
ext {
3
- kotlinVersion = " 1.3.61 "
3
+ kotlinVersion = " 1.9.22 "
4
4
}
5
5
repositories {
6
6
google()
Original file line number Diff line number Diff line change 17
17
apply plugin : " com.android.application"
18
18
19
19
android {
20
- compileSdkVersion 30
20
+ compileSdk 34
21
21
buildToolsVersion = rootProject. buildToolsVersion
22
22
defaultConfig {
23
23
applicationId " com.example.android.testing.unittesting.BasicSample"
24
- minSdkVersion 14
24
+ minSdkVersion 21
25
25
versionCode 1
26
26
versionName " 1.0"
27
- targetSdkVersion 30
27
+ targetSdkVersion 34
28
28
}
29
29
productFlavors {
30
30
}
Original file line number Diff line number Diff line change 16
16
17
17
// Top-level build file where you can add configuration options common to all sub-projects/modules.
18
18
buildscript {
19
- ext. agpVersion = " 7.3.0-alpha07 "
19
+ ext. agpVersion = " 8.5.0 "
20
20
repositories {
21
21
// Insert local test repo here
22
22
google()
Original file line number Diff line number Diff line change 1
1
apply plugin : " com.android.application"
2
2
3
3
android {
4
- compileSdk 33
4
+ compileSdk 34
5
5
buildToolsVersion = rootProject. buildToolsVersion
6
6
7
7
defaultConfig {
8
8
applicationId " com.example.android.testing.unittesting.basicunitandroidtest"
9
- minSdkVersion 14
10
- targetSdkVersion 33
9
+ minSdkVersion 21
10
+ targetSdkVersion 34
11
11
versionCode 1
12
12
versionName " 1.0"
13
13
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
buildscript {
4
- ext. agpVersion = " 8.1.1 "
4
+ ext. agpVersion = " 8.5.0 "
5
5
repositories {
6
6
// Insert local test repo here
7
7
google()
@@ -25,10 +25,10 @@ allprojects {
25
25
26
26
ext {
27
27
buildToolsVersion = " 31.0.0"
28
- androidxAnnotationVersion = " 1.2 .0"
29
- coreVersion = " 1.5.0 "
30
- extJUnitVersion = " 1.1.4 "
31
- runnerVersion = " 1.5.0 "
28
+ androidxAnnotationVersion = " 1.5 .0"
29
+ coreVersion = " 1.6.1 "
30
+ extJUnitVersion = " 1.2.1 "
31
+ runnerVersion = " 1.6.1 "
32
32
hamcrestVersion = " 1.3"
33
33
truthVersion = " 1.1.3"
34
34
}
You can’t perform that action at this time.
0 commit comments