File tree Expand file tree Collapse file tree 5 files changed +13
-19
lines changed Expand file tree Collapse file tree 5 files changed +13
-19
lines changed Original file line number Diff line number Diff line change 1
- ## 0.0.4 (27 April 2016)
2
- ** Features **
1
+ ## 0.0.5 (5th May 2016)
2
+ ** Bugfixes **
3
3
4
+ * Removed unnecesary <application > tag from AndroidManifest.xml to no longer cause Manifest merge conflicts with espresso-intents dependency
5
+
6
+ ## 0.0.4 (27th April 2016)
4
7
* ** Request verification**
5
8
It is possible to verify which requests were called and how many times thanks to ` RequestVerifier ` .
6
9
@@ -18,7 +21,7 @@ It is possible to verify which requests were called and how many times thanks to
18
21
* renamed method ` RESTMockServer.removeAllMatchableCalls() ` to ` RESTMockServer.reset() ` (#5 )
19
22
* generified ` when* ` methods in ` RESTMockServer ` to make it possible to use meta-matchers like ` allOf ` and ` anyOf ` (#5 ).
20
23
21
- ## 0.0.3 (23 April 2016)
24
+ ## 0.0.3 (23th April 2016)
22
25
* Sample android app
23
26
* Added logging capabilities to ` RESTMockServer ` . ` RESTMockTestRunner ` has enabled logging by default, if you use a custom TestRunner, use:
24
27
@@ -28,5 +31,5 @@ Or you can enable/disable it anytime with `RESTMockServer.enableLogging(RESTMock
28
31
29
32
* bugfixes
30
33
31
- ## 0.0.2 (22 April 2016)
34
+ ## 0.0.2 (22th April 2016)
32
35
Initial release
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ RESTMockServer.whenGET(pathContains("users/defunkt"))
24
24
- [ License] ( #license )
25
25
26
26
## Setup
27
- Here are the basic rules to set up RESTMock for various platforms
27
+ Here are the basic rules to set up RESTMock for Android
28
28
29
29
####Step 1: Repository
30
30
Add it in your root build.gradle at the end of repositories:
@@ -42,7 +42,7 @@ Add the dependency
42
42
43
43
``` groovy
44
44
dependencies {
45
- androidTestCompile 'com.github.andrzejchm.RESTMock:android:0.0.4 '
45
+ androidTestCompile 'com.github.andrzejchm.RESTMock:android:0.0.5 '
46
46
}
47
47
```
48
48
Original file line number Diff line number Diff line change @@ -72,6 +72,8 @@ dependencies {
72
72
androidTestCompile ' com.android.support.test:runner:0.5'
73
73
androidTestCompile ' com.android.support.test:rules:0.5'
74
74
androidTestCompile ' com.android.support.test.espresso:espresso-core:2.2.2'
75
+ // this dependency tends to break things for most users. Im adding it to check whether the app compiles correctly
76
+ androidTestCompile ' com.android.support.test.espresso:espresso-intents:2.2.2'
75
77
androidTestCompile(' com.android.support.test.espresso:espresso-contrib:2.2.2' ) {
76
78
exclude group : ' com.android.support' , module : ' appcompat'
77
79
exclude group : ' com.android.support' , module : ' support-v4'
@@ -83,9 +85,6 @@ dependencies {
83
85
84
86
// the most important, RESTMock! :)
85
87
androidTestCompile project(' :android' )
86
- androidTestCompile(project(' :core' )) {
87
- exclude group : ' org.bouncycastle' , module : ' bcprov-jdk15on'
88
- }
89
88
90
89
testCompile ' junit:junit:4.12'
91
90
}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ allprojects {
33
33
repositories {
34
34
jcenter()
35
35
}
36
- version = " 0.0.4 "
36
+ version = " 0.0.5 "
37
37
}
38
38
39
39
ext. preDexLibraries = project. hasProperty(' preDexLibraries' )
Original file line number Diff line number Diff line change 1
- general :
2
- branches :
3
- only :
4
- - master
5
- - develop
6
- - /feature\/.*/
7
- - /bugfix\/.*/
8
- - /release\/.*/
9
1
# # Customize the test machine
10
2
machine :
11
3
# # Add some environment variables
@@ -21,5 +13,5 @@ dependencies:
21
13
# # Customize test commands
22
14
test :
23
15
override :
24
- - case $CIRCLE_NODE_INDEX in 0) ./gradlew check -PpreDexLibraries=false ;; 1) ;; esac :
16
+ - case $CIRCLE_NODE_INDEX in 0) ./gradlew check -PpreDexLibraries=false ;; 1) ./gradlew :androidsample:assembleDebug :androidsample:assembleAndroidTest -PpreDexLibraries=false ;; esac :
25
17
parallel : true
You can’t perform that action at this time.
0 commit comments