Skip to content

Commit

Permalink
Prepare for v6.0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mscwilson committed Jun 12, 2024
1 parent 7eda874 commit 1e15289
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 6.0.4 (2024-06-05)
--------------------------
Send correct install referrer timestamps (#687)
Set serverAnonymisation more quickly (#689)

Version 6.0.3 (2024-04-18)
--------------------------
Add Subject config flag to avoid WindowManager bug (#657)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.0.3
6.0.4
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {

subprojects {
group = 'com.snowplowanalytics'
version = '6.0.3'
version = '6.0.4'
repositories {
google()
maven {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ systemProp.org.gradle.internal.http.socketTimeout=120000
SONATYPE_STAGING_PROFILE=comsnowplowanalytics
GROUP=com.snowplowanalytics
POM_ARTIFACT_ID=snowplow-android-tracker
VERSION_NAME=6.0.3
VERSION_NAME=6.0.4

POM_NAME=snowplow-android-tracker
POM_PACKAGING=aar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,15 @@ import com.snowplowanalytics.snowplow.payload.SelfDescribingJson
import com.snowplowanalytics.snowplow.tracker.LogLevel

object Tracking {
/**
* Replace this with the URI of your Snowplow collector
* (e.g., Micro, Mini, or BDP).
*/
private const val collectorEndpoint = "placeholder"

@Composable
fun setup(namespace: String) : TrackerController {
// Replace this collector endpoint with your own
val networkConfig = NetworkConfiguration("http://192.168.0.20:9090", HttpMethod.POST)
val networkConfig = NetworkConfiguration(collectorEndpoint, HttpMethod.POST)
val trackerConfig = TrackerConfiguration("appID")
.logLevel(LogLevel.DEBUG)
.screenViewAutotracking(false)
Expand Down

0 comments on commit 1e15289

Please sign in to comment.