File tree Expand file tree Collapse file tree 10 files changed +36
-31
lines changed
runner/AndroidTestOrchestratorWithTestCoverageSample
ui/espresso/IntentsAdvancedSample/app Expand file tree Collapse file tree 10 files changed +36
-31
lines changed Original file line number Diff line number Diff line change 11integration/ServiceTestRuleSample
22runner/AndroidJunitRunnerSample
33runner/AndroidTestOrchestratorSample
4+ runner/AndroidTestOrchestratorWithTestCoverageSample
45ui/espresso/AccessibilitySample
56ui/espresso/BasicSample
67ui/espresso/CustomMatcherSample
@@ -10,10 +11,13 @@ ui/espresso/FragmentScenarioSample
1011ui/espresso/IdlingResourceSample
1112ui/espresso/IntentsAdvancedSample
1213ui/espresso/IntentsBasicSample
13- ui/espresso/MultiWindowSample
1414ui/espresso/MultiProcessSample
15+ ui/espresso/MultiWindowSample
1516ui/espresso/RecyclerViewSample
1617ui/espresso/ScreenshotSample
1718ui/espresso/WebBasicSample
1819ui/uiautomator/BasicSample
1920unit/BasicNativeAndroidTest
21+ unit/BasicSample
22+ unit/BasicSample-kotlinApp
23+ unit/BasicUnitAndroidTest
Original file line number Diff line number Diff line change 11apply plugin : " com.android.application"
22
33android {
4- compileSdk 33
4+ compileSdk 34
55 defaultConfig {
66 applicationId " com.example.android.testing.androidtestorchestratorsample"
7- minSdkVersion 14
8- targetSdkVersion 33
7+ minSdkVersion 21
8+ targetSdkVersion 34
99 versionCode 1
1010 versionName " 1.0"
1111
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
33buildscript {
4- ext. agpVersion = " 8.1.1 "
4+ ext. agpVersion = " 8.5.0 "
55 repositories {
66 // Insert local test repo here
77 google()
@@ -24,14 +24,14 @@ allprojects {
2424}
2525
2626ext {
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 "
3333 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 "
3636 truthVersion = " 1.1.3"
3737}
Original file line number Diff line number Diff line change 11apply plugin : " com.android.application"
22
33android {
4- compileSdkVersion 33
4+ compileSdk 34
55 buildToolsVersion = rootProject. buildToolsVersion
66 defaultConfig {
77 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"
55apply plugin : " kotlin-android-extensions"
66
77android {
8- compileSdkVersion 27
8+ compileSdk 34
99 defaultConfig {
1010 applicationId " com.example.android.testing.unittesting.BasicSample"
11- minSdkVersion 14
11+ minSdkVersion 21
1212 versionCode 1
1313 versionName " 1.0"
14- targetSdkVersion 27
14+ targetSdkVersion 34
1515 }
1616}
1717
Original file line number Diff line number Diff line change 11buildscript {
22 ext {
3- kotlinVersion = " 1.3.61"
3+ agpVersion = " 8.5.0"
4+ kotlinVersion = " 1.9.22"
45 }
56 repositories {
67 google()
78 mavenCentral()
89 }
910 dependencies {
10- classpath " com.android.tools.build:gradle:3.5.2 "
11+ classpath " com.android.tools.build:gradle:$a gpVersion "
1112 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion "
1213 }
1314}
Original file line number Diff line number Diff line change 1717apply plugin : " com.android.application"
1818
1919android {
20- compileSdkVersion 30
20+ compileSdk 34
2121 buildToolsVersion = rootProject. buildToolsVersion
2222 defaultConfig {
2323 applicationId " com.example.android.testing.unittesting.BasicSample"
24- minSdkVersion 14
24+ minSdkVersion 21
2525 versionCode 1
2626 versionName " 1.0"
27- targetSdkVersion 30
27+ targetSdkVersion 34
2828 }
2929 productFlavors {
3030 }
Original file line number Diff line number Diff line change 1616
1717// Top-level build file where you can add configuration options common to all sub-projects/modules.
1818buildscript {
19- ext. agpVersion = " 7.3.0-alpha07 "
19+ ext. agpVersion = " 8.5.0 "
2020 repositories {
2121 // Insert local test repo here
2222 google()
Original file line number Diff line number Diff line change 11apply plugin : " com.android.application"
22
33android {
4- compileSdk 33
4+ compileSdk 34
55 buildToolsVersion = rootProject. buildToolsVersion
66
77 defaultConfig {
88 applicationId " com.example.android.testing.unittesting.basicunitandroidtest"
9- minSdkVersion 14
10- targetSdkVersion 33
9+ minSdkVersion 21
10+ targetSdkVersion 34
1111 versionCode 1
1212 versionName " 1.0"
1313 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
33buildscript {
4- ext. agpVersion = " 8.1.1 "
4+ ext. agpVersion = " 8.5.0 "
55 repositories {
66 // Insert local test repo here
77 google()
@@ -25,10 +25,10 @@ allprojects {
2525
2626ext {
2727 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 "
3232 hamcrestVersion = " 1.3"
3333 truthVersion = " 1.1.3"
3434}
You can’t perform that action at this time.
0 commit comments