You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ An Android Client for [Constructor.io](http://constructor.io/). [Constructor.io
6
6
7
7
## 1. Install
8
8
9
-
Please follow the directions at [Jitpack.io](https://jitpack.io/#Constructor-io/constructorio-client-android/v2.5.0) to add the client to your project.
9
+
Please follow the directions at [Jitpack.io](https://jitpack.io/#Constructor-io/constructorio-client-android/v2.5.1) to add the client to your project.
val path ="/autocomplete/titanic?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.0&_dt="
66
+
val path ="/autocomplete/titanic?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.1&_dt="
67
67
assert(request.path.startsWith(path))
68
68
}
69
69
@@ -74,7 +74,7 @@ class ConstructorioSegmentsTest {
74
74
val observer = constructorIo.trackSessionStartInternal().test()
75
75
observer.assertComplete()
76
76
val request = mockServer.takeRequest()
77
-
val path ="/behavior?action=session_start&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.0&_dt=";
77
+
val path ="/behavior?action=session_start&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.1&_dt=";
78
78
assert(request.path.startsWith(path))
79
79
}
80
80
@@ -85,7 +85,7 @@ class ConstructorioSegmentsTest {
85
85
val observer =ConstructorIo.trackInputFocusInternal("tita").test()
86
86
observer.assertComplete()
87
87
val request = mockServer.takeRequest()
88
-
val path ="/behavior?term=tita&action=focus&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.0&_dt=";
88
+
val path ="/behavior?term=tita&action=focus&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.1&_dt=";
89
89
assert(request.path.startsWith(path))
90
90
}
91
91
@@ -96,7 +96,7 @@ class ConstructorioSegmentsTest {
96
96
val observer =ConstructorIo.trackAutocompleteSelectInternal("titanic", "tit", "Search Suggestions").test()
97
97
observer.assertComplete()
98
98
val request = mockServer.takeRequest()
99
-
val path ="/autocomplete/titanic/select?section=Search%20Suggestions&original_query=tit&tr=click&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.0&_dt="
99
+
val path ="/autocomplete/titanic/select?section=Search%20Suggestions&original_query=tit&tr=click&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.1&_dt="
100
100
assert(request.path.startsWith(path))
101
101
}
102
102
@@ -107,7 +107,7 @@ class ConstructorioSegmentsTest {
107
107
val observer =ConstructorIo.trackSearchSubmitInternal("titanic", "tit", null).test()
108
108
observer.assertComplete()
109
109
val request = mockServer.takeRequest()
110
-
val path ="/autocomplete/titanic/search?original_query=tit&tr=search&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.0&_dt=";
110
+
val path ="/autocomplete/titanic/search?original_query=tit&tr=search&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.1&_dt=";
111
111
assert(request.path.startsWith(path))
112
112
}
113
113
@@ -118,7 +118,7 @@ class ConstructorioSegmentsTest {
118
118
val observer =ConstructorIo.trackSearchResultsLoadedInternal("titanic", 10).test()
119
119
observer.assertComplete()
120
120
val request = mockServer.takeRequest()
121
-
val path ="/behavior?term=titanic&num_results=10&action=search-results&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.0&_dt=";
121
+
val path ="/behavior?term=titanic&num_results=10&action=search-results&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.1&_dt=";
122
122
assert(request.path.startsWith(path))
123
123
}
124
124
@@ -129,7 +129,7 @@ class ConstructorioSegmentsTest {
129
129
val observer =ConstructorIo.trackSearchResultClickInternal("titanic replica", "TIT-REP-1997", "titanic").test()
130
130
observer.assertComplete()
131
131
val request = mockServer.takeRequest()
132
-
val path ="/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997§ion=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.0&_dt=";
132
+
val path ="/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997§ion=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.1&_dt=";
133
133
assert(request.path.startsWith(path))
134
134
}
135
135
@@ -140,7 +140,7 @@ class ConstructorioSegmentsTest {
140
140
val observer =ConstructorIo.trackConversionInternal("titanic replica", "TIT-REP-1997", 89.00).test()
141
141
observer.assertComplete()
142
142
val request = mockServer.takeRequest()
143
-
val path ="/autocomplete/TERM_UNKNOWN/conversion?name=titanic%20replica&customer_id=TIT-REP-1997&revenue=89.00§ion=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.0&_dt=";
143
+
val path ="/autocomplete/TERM_UNKNOWN/conversion?name=titanic%20replica&customer_id=TIT-REP-1997&revenue=89.00§ion=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.1&_dt=";
144
144
assert(request.path.startsWith(path))
145
145
}
146
146
@@ -151,7 +151,7 @@ class ConstructorioSegmentsTest {
151
151
val observer =ConstructorIo.trackPurchaseInternal(arrayOf("TIT-REP-1997", "QE2-REP-1969"), 12.99, "ORD-1312343").test()
152
152
observer.assertComplete()
153
153
val request = mockServer.takeRequest()
154
-
val path ="/v2/behavioral_action/purchase?section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.0&_dt=";
154
+
val path ="/v2/behavioral_action/purchase?section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.5.1&_dt=";
val path ="/autocomplete/titanic?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.0&_dt="
67
+
val path ="/autocomplete/titanic?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.1&_dt="
68
68
assert(request.path.startsWith(path))
69
69
}
70
70
@@ -75,7 +75,7 @@ class ConstructorioTestCellTest {
75
75
val observer = constructorIo.trackSessionStartInternal().test()
76
76
observer.assertComplete()
77
77
val request = mockServer.takeRequest()
78
-
val path ="/behavior?action=session_start&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.0&_dt=";
78
+
val path ="/behavior?action=session_start&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.1&_dt=";
79
79
assert(request.path.startsWith(path))
80
80
}
81
81
@@ -86,7 +86,7 @@ class ConstructorioTestCellTest {
86
86
val observer =ConstructorIo.trackInputFocusInternal("tita").test()
87
87
observer.assertComplete()
88
88
val request = mockServer.takeRequest()
89
-
val path ="/behavior?term=tita&action=focus&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.0&_dt=";
89
+
val path ="/behavior?term=tita&action=focus&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.1&_dt=";
90
90
assert(request.path.startsWith(path))
91
91
}
92
92
@@ -97,7 +97,7 @@ class ConstructorioTestCellTest {
97
97
val observer =ConstructorIo.trackAutocompleteSelectInternal("titanic", "tit", "Search Suggestions").test()
98
98
observer.assertComplete()
99
99
val request = mockServer.takeRequest()
100
-
val path ="/autocomplete/titanic/select?section=Search%20Suggestions&original_query=tit&tr=click&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.0&_dt="
100
+
val path ="/autocomplete/titanic/select?section=Search%20Suggestions&original_query=tit&tr=click&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.1&_dt="
101
101
assert(request.path.startsWith(path))
102
102
}
103
103
@@ -108,7 +108,7 @@ class ConstructorioTestCellTest {
108
108
val observer =ConstructorIo.trackSearchSubmitInternal("titanic", "tit", null).test()
109
109
observer.assertComplete()
110
110
val request = mockServer.takeRequest()
111
-
val path ="/autocomplete/titanic/search?original_query=tit&tr=search&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.0&_dt=";
111
+
val path ="/autocomplete/titanic/search?original_query=tit&tr=search&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.1&_dt=";
112
112
assert(request.path.startsWith(path))
113
113
}
114
114
@@ -119,7 +119,7 @@ class ConstructorioTestCellTest {
119
119
val observer =ConstructorIo.trackSearchResultsLoadedInternal("titanic", 10).test()
120
120
observer.assertComplete()
121
121
val request = mockServer.takeRequest()
122
-
val path ="/behavior?term=titanic&num_results=10&action=search-results&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.0&_dt=";
122
+
val path ="/behavior?term=titanic&num_results=10&action=search-results&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.1&_dt=";
123
123
assert(request.path.startsWith(path))
124
124
}
125
125
@@ -130,7 +130,7 @@ class ConstructorioTestCellTest {
130
130
val observer =ConstructorIo.trackSearchResultClickInternal("titanic replica", "TIT-REP-1997", "titanic").test()
131
131
observer.assertComplete()
132
132
val request = mockServer.takeRequest()
133
-
val path ="/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997§ion=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.0&_dt=";
133
+
val path ="/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997§ion=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.1&_dt=";
134
134
assert(request.path.startsWith(path))
135
135
}
136
136
@@ -141,7 +141,7 @@ class ConstructorioTestCellTest {
141
141
val observer =ConstructorIo.trackConversionInternal("titanic replica", "TIT-REP-1997", 89.00).test()
142
142
observer.assertComplete()
143
143
val request = mockServer.takeRequest()
144
-
val path ="/autocomplete/TERM_UNKNOWN/conversion?name=titanic%20replica&customer_id=TIT-REP-1997&revenue=89.00§ion=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.0&_dt=";
144
+
val path ="/autocomplete/TERM_UNKNOWN/conversion?name=titanic%20replica&customer_id=TIT-REP-1997&revenue=89.00§ion=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.1&_dt=";
145
145
assert(request.path.startsWith(path))
146
146
}
147
147
@@ -152,7 +152,7 @@ class ConstructorioTestCellTest {
152
152
val observer =ConstructorIo.trackPurchaseInternal(arrayOf("TIT-REP-1997", "QE2-REP-1969"), 12.99, "ORD-1312343").test()
153
153
observer.assertComplete()
154
154
val request = mockServer.takeRequest()
155
-
val path ="/v2/behavioral_action/purchase?section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.0&_dt=";
155
+
val path ="/v2/behavioral_action/purchase?section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.5.1&_dt=";
0 commit comments