From b448e1850c15128a8a2cf367361b5c80a931665d Mon Sep 17 00:00:00 2001 From: Christopher Houdlette Date: Mon, 20 Apr 2026 17:09:42 -0600 Subject: [PATCH] chore: release v1.2.1 --- README.md | 4 ++-- gradle.properties | 2 +- metarouter-sdk/build.gradle.kts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6552462..b4ee2d6 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Then add the dependency in your module-level `build.gradle.kts`: ```kotlin dependencies { - implementation("com.github.metarouterio:android-sdk:1.2.0") + implementation("com.github.metarouterio:android-sdk:1.2.1") } ``` @@ -486,7 +486,7 @@ analytics.track("Button Clicked", "buttonName" to "Submit") "app": { "name": "MyApp", "version": "1.0.0", "build": "42" }, "screen": { "width": 411, "height": 891, "density": 2.63 }, "network": { "wifi": true }, - "library": { "name": "metarouter-android-sdk", "version": "1.2.0" }, + "library": { "name": "metarouter-android-sdk", "version": "1.2.1" }, "locale": "en-US", "timezone": "America/New_York" } diff --git a/gradle.properties b/gradle.properties index 932abf7..4e9ed5f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,4 +14,4 @@ android.enableJetifier=false kotlin.incremental=true # SDK Version -SDK_VERSION=1.2.0 +SDK_VERSION=1.2.1 diff --git a/metarouter-sdk/build.gradle.kts b/metarouter-sdk/build.gradle.kts index d9f1041..2db31a3 100644 --- a/metarouter-sdk/build.gradle.kts +++ b/metarouter-sdk/build.gradle.kts @@ -19,7 +19,7 @@ android { testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles("consumer-rules.pro") - buildConfigField("String", "SDK_VERSION", "\"${project.findProperty("SDK_VERSION") ?: "1.2.0"}\"") + buildConfigField("String", "SDK_VERSION", "\"${project.findProperty("SDK_VERSION") ?: "1.2.1"}\"") } buildTypes {