Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dc5289c

Browse files
committed
Espresso 2.2.1 Runner/Rules 0.4 release
Change-Id: I148f75201ab86fd0e1aefcf32284c11cc67c689a
1 parent f16ac90 commit dc5289c

File tree

13 files changed

+62
-62
lines changed

13 files changed

+62
-62
lines changed

integration/ServiceTestRuleSample/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion '23.0.0'
5+
buildToolsVersion '23.0.1'
66
defaultConfig {
77
applicationId "com.example.android.testing.integrationtesting.ServiceTestRuleSample"
88
minSdkVersion 10
@@ -25,7 +25,7 @@ android {
2525
dependencies {
2626
// Testing-only dependencies
2727
// Force usage of support annotations in the test app, since it is internally used by the runner module.
28-
androidTestCompile 'com.android.support:support-annotations:23.0.0'
29-
androidTestCompile 'com.android.support.test:runner:0.3'
30-
androidTestCompile 'com.android.support.test:rules:0.3'
28+
androidTestCompile 'com.android.support:support-annotations:23.0.1'
29+
androidTestCompile 'com.android.support.test:runner:0.4'
30+
androidTestCompile 'com.android.support.test:rules:0.4'
3131
}

runner/AndroidJunitRunnerSample/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.android.application'
33

44
android {
55
compileSdkVersion 23
6-
buildToolsVersion '23.0.0'
6+
buildToolsVersion '23.0.1'
77
defaultConfig {
88
applicationId "com.example.android.testing.androidjunitrunnersample"
99
minSdkVersion 8
@@ -28,13 +28,13 @@ android {
2828

2929
dependencies {
3030
// App's dependencies, including test
31-
compile 'com.android.support:support-annotations:23.0.0'
31+
compile 'com.android.support:support-annotations:23.0.1'
3232
compile 'com.google.guava:guava:18.0'
3333

3434
// Testing-only dependencies
3535
// Force usage of support annotations in the test app, since it is internally used by the runner module.
36-
androidTestCompile 'com.android.support:support-annotations:23.0.0'
37-
androidTestCompile 'com.android.support.test:runner:0.3'
38-
androidTestCompile 'com.android.support.test:rules:0.3'
39-
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
36+
androidTestCompile 'com.android.support:support-annotations:23.0.1'
37+
androidTestCompile 'com.android.support.test:runner:0.4'
38+
androidTestCompile 'com.android.support.test:rules:0.4'
39+
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
4040
}

runner/AndroidJunitRunnerSample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.2.3'
8+
classpath 'com.android.tools.build:gradle:1.3.1'
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files

ui/espresso/BasicSample/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion '23.0.0'
5+
buildToolsVersion '23.0.1'
66
defaultConfig {
77
applicationId "com.example.android.testing.espresso.BasicSample"
88
minSdkVersion 10
@@ -24,12 +24,12 @@ android {
2424

2525
dependencies {
2626
// App dependencies
27-
compile 'com.android.support:support-annotations:23.0.0'
27+
compile 'com.android.support:support-annotations:23.0.1'
2828
compile 'com.google.guava:guava:18.0'
2929
// Testing-only dependencies
3030
// Force usage of support annotations in the test app, since it is internally used by the runner module.
31-
androidTestCompile 'com.android.support:support-annotations:23.0.0'
32-
androidTestCompile 'com.android.support.test:runner:0.3'
33-
androidTestCompile 'com.android.support.test:rules:0.3'
34-
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
31+
androidTestCompile 'com.android.support:support-annotations:23.0.1'
32+
androidTestCompile 'com.android.support.test:runner:0.4'
33+
androidTestCompile 'com.android.support.test:rules:0.4'
34+
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
3535
}

ui/espresso/CustomMatcherSample/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion '23.0.0'
5+
buildToolsVersion '23.0.1'
66
defaultConfig {
77
applicationId "com.example.android.testing.espresso.CustomMatcherSample"
88
minSdkVersion 10
@@ -30,12 +30,12 @@ android {
3030

3131
dependencies {
3232
// App dependencies
33-
compile 'com.android.support:support-annotations:23.0.0'
33+
compile 'com.android.support:support-annotations:23.0.1'
3434
compile 'com.google.guava:guava:18.0'
3535
// Testing-only dependencies
3636
// Force usage of support annotations in the test app, since it is internally used by the runner module.
37-
androidTestCompile 'com.android.support:support-annotations:23.0.0'
38-
androidTestCompile 'com.android.support.test:runner:0.3'
39-
androidTestCompile 'com.android.support.test:rules:0.3'
40-
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
37+
androidTestCompile 'com.android.support:support-annotations:23.0.1'
38+
androidTestCompile 'com.android.support.test:runner:0.4'
39+
androidTestCompile 'com.android.support.test:rules:0.4'
40+
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
4141
}

ui/espresso/DataAdapterSample/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion '23.0.0'
5+
buildToolsVersion '23.0.1'
66
defaultConfig {
77
applicationId "com.example.android.testing.espresso.DataAdapterSample"
88
minSdkVersion 10
@@ -21,12 +21,12 @@ android {
2121

2222
dependencies {
2323
// App dependencies
24-
compile 'com.android.support:support-annotations:23.0.0'
24+
compile 'com.android.support:support-annotations:23.0.1'
2525
compile 'com.google.guava:guava:18.0'
2626
// Testing-only dependencies
2727
// Force usage of support annotations in the test app, since it is internally used by the runner module.
28-
androidTestCompile 'com.android.support:support-annotations:23.0.0'
29-
androidTestCompile 'com.android.support.test:runner:0.3'
30-
androidTestCompile 'com.android.support.test:rules:0.3'
31-
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
28+
androidTestCompile 'com.android.support:support-annotations:23.0.1'
29+
androidTestCompile 'com.android.support.test:runner:0.4'
30+
androidTestCompile 'com.android.support.test:rules:0.4'
31+
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
3232
}

ui/espresso/IntentsAdvancedSample/app/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion '23.0.0'
5+
buildToolsVersion '23.0.1'
66
defaultConfig {
77
applicationId "com.example.android.testing.espresso.intents.AdvancedSample"
88
minSdkVersion 10
@@ -24,12 +24,12 @@ android {
2424

2525
dependencies {
2626
// App dependencies
27-
compile 'com.android.support:support-annotations:23.0.0'
27+
compile 'com.android.support:support-annotations:23.0.1'
2828
// Testing-only dependencies
2929
// Force usage of support annotations in the test app, since it is internally used by the runner module.
30-
androidTestCompile 'com.android.support:support-annotations:23.0.0'
31-
androidTestCompile 'com.android.support.test:runner:0.3'
32-
androidTestCompile 'com.android.support.test:rules:0.3'
33-
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
34-
androidTestCompile 'com.android.support.test.espresso:espresso-intents:2.2'
30+
androidTestCompile 'com.android.support:support-annotations:23.0.1'
31+
androidTestCompile 'com.android.support.test:runner:0.4'
32+
androidTestCompile 'com.android.support.test:rules:0.4'
33+
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
34+
androidTestCompile 'com.android.support.test.espresso:espresso-intents:2.2.1'
3535
}

ui/espresso/IntentsBasicSample/app/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion '23.0.0'
5+
buildToolsVersion '23.0.1'
66
defaultConfig {
77
applicationId "com.example.android.testing.espresso.BasicSample"
88
minSdkVersion 10
@@ -24,12 +24,12 @@ android {
2424

2525
dependencies {
2626
// App dependencies
27-
compile 'com.android.support:support-annotations:23.0.0'
27+
compile 'com.android.support:support-annotations:23.0.1'
2828
// Testing-only dependencies
2929
// Force usage of support annotations in the test app, since it is internally used by the runner module.
30-
androidTestCompile 'com.android.support:support-annotations:23.0.0'
31-
androidTestCompile 'com.android.support.test:runner:0.3'
32-
androidTestCompile 'com.android.support.test:rules:0.3'
33-
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
34-
androidTestCompile 'com.android.support.test.espresso:espresso-intents:2.2'
30+
androidTestCompile 'com.android.support:support-annotations:23.0.1'
31+
androidTestCompile 'com.android.support.test:runner:0.4'
32+
androidTestCompile 'com.android.support.test:rules:0.4'
33+
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
34+
androidTestCompile 'com.android.support.test.espresso:espresso-intents:2.2.1'
3535
}

ui/espresso/MultiWindowSample/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.android.application'
33

44
android {
55
compileSdkVersion 23
6-
buildToolsVersion '23.0.0'
6+
buildToolsVersion '23.0.1'
77
defaultConfig {
88
applicationId "com.example.android.testing.espresso.MultiWindowSample"
99
minSdkVersion 10
@@ -31,12 +31,12 @@ android {
3131

3232
dependencies {
3333
// App dependencies
34-
compile 'com.android.support:support-annotations:23.0.0'
34+
compile 'com.android.support:support-annotations:23.0.1'
3535
compile 'com.google.guava:guava:18.0'
3636
// Testing-only dependencies
3737
// Force usage of support annotations in the test app, since it is internally used by the runner module.
38-
androidTestCompile 'com.android.support:support-annotations:23.0.0'
39-
androidTestCompile 'com.android.support.test:runner:0.3'
40-
androidTestCompile 'com.android.support.test:rules:0.3'
41-
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
38+
androidTestCompile 'com.android.support:support-annotations:23.0.1'
39+
androidTestCompile 'com.android.support.test:runner:0.4'
40+
androidTestCompile 'com.android.support.test:rules:0.4'
41+
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
4242
}

ui/espresso/WebBasicSample/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 23
5-
buildToolsVersion '23.0.0'
5+
buildToolsVersion '23.0.1'
66
defaultConfig {
77
applicationId "com.example.android.testing.espresso.web.BasicSample"
88
minSdkVersion 10
@@ -24,12 +24,12 @@ android {
2424

2525
dependencies {
2626
// App dependencies
27-
compile 'com.android.support:support-annotations:23.0.0'
27+
compile 'com.android.support:support-annotations:23.0.1'
2828
compile 'com.google.guava:guava:18.0'
2929
// Testing-only dependencies
3030
// Force usage of support annotations in the test app, since it is internally used by the runner module.
31-
androidTestCompile 'com.android.support:support-annotations:23.0.0'
32-
androidTestCompile 'com.android.support.test:runner:0.3'
33-
androidTestCompile 'com.android.support.test:rules:0.3'
34-
androidTestCompile 'com.android.support.test.espresso:espresso-web:2.2'
31+
androidTestCompile 'com.android.support:support-annotations:23.0.1'
32+
androidTestCompile 'com.android.support.test:runner:0.4'
33+
androidTestCompile 'com.android.support.test:rules:0.4'
34+
androidTestCompile 'com.android.support.test.espresso:espresso-web:2.2.1'
3535
}

0 commit comments

Comments
 (0)