Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ class ReportingAPI(private val instanceId: String) {

private val gson = Gson()

private val client =
OkHttpClient.Builder()
.addInterceptor(PusherLibraryHeaderInterceptor())
.build()

private val service =
Retrofit.Builder()
.baseUrl(baseUrl)
Expand Down Expand Up @@ -54,4 +49,12 @@ class ReportingAPI(private val instanceId: String) {
reportingRequest = reportEvent
).enqueue(callback)
}


companion object {
val client: OkHttpClient =
OkHttpClient.Builder()
.addInterceptor(PusherLibraryHeaderInterceptor())
.build()
}
}