Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand Down Expand Up @@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ android.enableJetifier=false
kotlin.incremental=true

# SDK Version
SDK_VERSION=1.2.0
SDK_VERSION=1.2.1
2 changes: 1 addition & 1 deletion metarouter-sdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading