- Measurer is client library for Google Analytics(using measurement protocol).
- Kotlin Multi-platform support.
- Supports all measurement protocol parameters.
- Supports all hit types.
- Supports batching of requests.
- This library abstracts the HTTP client. you can implement by any HTTP client(like ktor client, etc).
common sample code
class Sample {
suspend fun track() {
val mp = MeasurementProtocol
.Builder(
trackingId = "UA-12345678-1"
).build()
mp.also { ga ->
ga.pageView("mydemo.com", "/checkout").apply {
clientId = "555"
documentTitle = "Checkout"
productAction = "checkout"
product = Product(index = 1).apply {
sku = "P12345"
name = "Android Warhol T-Shirt"
category = "Apparel"
brand = "Google"
variant = "Black"
price = 1
quantity = 1
}
checkoutStep = 1
checkoutStepOption = "Visa"
}
}.send()
}
}
- Upload bintray
- Support navite
- Support JS
Add the measurer bintray repository to your build.gradle
repositories {
maven { url "https://dl.bintray.com/soushin/maven" }
}
Depending on your type of Kotlin project add one of these dependencies:
Common
implementation 'com.github.soushin:measurer:0.0.3'
JVM
implementation 'com.github.soushin:measurer-jvm:0.0.3'
Android
implementation 'com.github.soushin:measurer-android:0.0.3'
iOS
implementation 'com.github.soushin:measurer-ios:0.0.3'
js
implementation 'com.github.soushin:measurer-js:0.0.3'
- Common module
object GoogleAnalytics {
private val httpClient = SampleHttpClient(SampleHttpClientConfig.httpClient, SampleNapierLogger())
suspend fun pageTracking(tid: String) {
val mp = MeasurementProtocol
.Builder(
trackingId = tid,
httpClient = httpClient
).build()
mp.also { ga ->
ga.pageView("mydemo.com", "/home").apply {
clientId = "555"
documentTitle = "homgepage"
contentGroup = ContentGroup(index = 1).apply {
value = "news/sports"
}
}
ga.pageView("mydemo.com", "/home").apply {
clientId = "555"
documentTitle = "homgepage"
contentGroup = ContentGroup(index = 2).apply {
value = "news/finance"
}
}
}.send()
}
}
- Android, Jvm
Call tracking method.
GoogleAnalytics.pageTracking(tid: "UA-12345678-1")
- iOS
prepare a proxy at Common module.
fun pageTracking(tid: String) {
NativeScope().launch {
GoogleAnalytics().pageTracking(tid)
}
}
Call proxy from ios project.
MeasurerProxyKt.pageTracking(tid: "UA-12345678-1")
Sample uses Napier. If you want to use your logging library, implements Logger.
Copyright (C) 2019 soushin
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
This library is inspired by brsanthu/google-analytics-java.
Thanks for advice. @AAkira, @horita-yuya