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.3.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.3.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.3.0&_dt="
65
+
val path ="/autocomplete/titanic?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.3.1&_dt="
66
66
assert(request.path.startsWith(path))
67
67
}
68
68
@@ -73,7 +73,7 @@ class ConstructorioSegmentsTest {
73
73
val observer = constructorIo.trackSessionStartInternal().test()
74
74
observer.assertComplete()
75
75
val request = mockServer.takeRequest()
76
-
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.3.0&_dt=";
76
+
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.3.1&_dt=";
77
77
assert(request.path.startsWith(path))
78
78
}
79
79
@@ -84,7 +84,7 @@ class ConstructorioSegmentsTest {
84
84
val observer =ConstructorIo.trackInputFocusInternal("tita").test()
85
85
observer.assertComplete()
86
86
val request = mockServer.takeRequest()
87
-
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.3.0&_dt=";
87
+
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.3.1&_dt=";
88
88
assert(request.path.startsWith(path))
89
89
}
90
90
@@ -95,7 +95,7 @@ class ConstructorioSegmentsTest {
95
95
val observer =ConstructorIo.trackAutocompleteSelectInternal("titanic", "tit", "Search Suggestions").test()
96
96
observer.assertComplete()
97
97
val request = mockServer.takeRequest()
98
-
val path ="/autocomplete/titanic/select?autocomplete_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.3.0&_dt="
98
+
val path ="/autocomplete/titanic/select?autocomplete_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.3.1&_dt="
99
99
assert(request.path.startsWith(path))
100
100
}
101
101
@@ -106,7 +106,7 @@ class ConstructorioSegmentsTest {
106
106
val observer =ConstructorIo.trackSearchSubmitInternal("titanic", "tit", null).test()
107
107
observer.assertComplete()
108
108
val request = mockServer.takeRequest()
109
-
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.3.0&_dt=";
109
+
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.3.1&_dt=";
110
110
assert(request.path.startsWith(path))
111
111
}
112
112
@@ -117,7 +117,7 @@ class ConstructorioSegmentsTest {
117
117
val observer =ConstructorIo.trackSearchResultsLoadedInternal("titanic", 10).test()
118
118
observer.assertComplete()
119
119
val request = mockServer.takeRequest()
120
-
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.3.0&_dt=";
120
+
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.3.1&_dt=";
121
121
assert(request.path.startsWith(path))
122
122
}
123
123
@@ -128,7 +128,7 @@ class ConstructorioSegmentsTest {
128
128
val observer =ConstructorIo.trackSearchResultClickInternal("titanic replica", "TIT-REP-1997", "titanic").test()
129
129
observer.assertComplete()
130
130
val request = mockServer.takeRequest()
131
-
val path ="/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.3.0&_dt=";
131
+
val path ="/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.3.1&_dt=";
132
132
assert(request.path.startsWith(path))
133
133
}
134
134
@@ -139,7 +139,7 @@ class ConstructorioSegmentsTest {
139
139
val observer =ConstructorIo.trackConversionInternal("titanic replica", "TIT-REP-1997", 89.00).test()
140
140
observer.assertComplete()
141
141
val request = mockServer.takeRequest()
142
-
val path ="/autocomplete/TERM_UNKNOWN/conversion?name=titanic%20replica&customer_id=TIT-REP-1997&revenue=89.00&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.3.0&_dt=";
142
+
val path ="/autocomplete/TERM_UNKNOWN/conversion?name=titanic%20replica&customer_id=TIT-REP-1997&revenue=89.00&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.3.1&_dt=";
143
143
assert(request.path.startsWith(path))
144
144
}
145
145
@@ -150,7 +150,7 @@ class ConstructorioSegmentsTest {
150
150
val observer =ConstructorIo.trackPurchaseInternal(arrayOf("TIT-REP-1997", "QE2-REP-1969"), 12.99, "ORD-1312343").test()
151
151
observer.assertComplete()
152
152
val request = mockServer.takeRequest()
153
-
val path ="/autocomplete/TERM_UNKNOWN/purchase?customer_ids=TIT-REP-1997&customer_ids=QE2-REP-1969&revenue=12.99&order_id=ORD-1312343&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.3.0&_dt=";
153
+
val path ="/autocomplete/TERM_UNKNOWN/purchase?customer_ids=TIT-REP-1997&customer_ids=QE2-REP-1969&revenue=12.99&order_id=ORD-1312343&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.3.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.3.0&_dt="
66
+
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.3.1&_dt="
67
67
assert(request.path.startsWith(path))
68
68
}
69
69
@@ -74,7 +74,7 @@ class ConstructorioTestCellTest {
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&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.0&_dt=";
77
+
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.3.1&_dt=";
78
78
assert(request.path.startsWith(path))
79
79
}
80
80
@@ -85,7 +85,7 @@ class ConstructorioTestCellTest {
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&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.0&_dt=";
88
+
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.3.1&_dt=";
89
89
assert(request.path.startsWith(path))
90
90
}
91
91
@@ -96,7 +96,7 @@ class ConstructorioTestCellTest {
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?autocomplete_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.3.0&_dt="
99
+
val path ="/autocomplete/titanic/select?autocomplete_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.3.1&_dt="
100
100
assert(request.path.startsWith(path))
101
101
}
102
102
@@ -107,7 +107,7 @@ class ConstructorioTestCellTest {
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&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.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&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.1&_dt=";
111
111
assert(request.path.startsWith(path))
112
112
}
113
113
@@ -118,7 +118,7 @@ class ConstructorioTestCellTest {
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&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.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&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.1&_dt=";
122
122
assert(request.path.startsWith(path))
123
123
}
124
124
@@ -129,7 +129,7 @@ class ConstructorioTestCellTest {
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&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.0&_dt=";
132
+
val path ="/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.1&_dt=";
133
133
assert(request.path.startsWith(path))
134
134
}
135
135
@@ -140,7 +140,7 @@ class ConstructorioTestCellTest {
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&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.0&_dt=";
143
+
val path ="/autocomplete/TERM_UNKNOWN/conversion?name=titanic%20replica&customer_id=TIT-REP-1997&revenue=89.00&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.1&_dt=";
144
144
assert(request.path.startsWith(path))
145
145
}
146
146
@@ -151,7 +151,7 @@ class ConstructorioTestCellTest {
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 ="/autocomplete/TERM_UNKNOWN/purchase?customer_ids=TIT-REP-1997&customer_ids=QE2-REP-1969&revenue=12.99&order_id=ORD-1312343&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.0&_dt=";
154
+
val path ="/autocomplete/TERM_UNKNOWN/purchase?customer_ids=TIT-REP-1997&customer_ids=QE2-REP-1969&revenue=12.99&order_id=ORD-1312343&autocomplete_section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.3.1&_dt=";
0 commit comments