Skip to content

Commit

Permalink
Version 2.4.0 Minor Release (#176)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Evan Masseau <>
  • Loading branch information
evan-masseau authored Jun 6, 2024
1 parent e5c4c5e commit e49a36b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ local.properties
IntelliJ files
.idea/
*.iml
google-services.json

# Mac OS files
.DS_Store
.DS_Store
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ send them timely push notifications via [FCM (Firebase Cloud Messaging)](https:/
```kotlin
// build.gradle.kts
dependencies {
implementation("com.github.klaviyo.klaviyo-android-sdk:analytics:2.3.0")
implementation("com.github.klaviyo.klaviyo-android-sdk:push-fcm:2.3.0")
implementation("com.github.klaviyo.klaviyo-android-sdk:analytics:2.4.0")
implementation("com.github.klaviyo.klaviyo-android-sdk:push-fcm:2.4.0")
}
```
</details>
Expand All @@ -63,8 +63,8 @@ send them timely push notifications via [FCM (Firebase Cloud Messaging)](https:/
```groovy
// build.gradle
dependencies {
implementation "com.github.klaviyo.klaviyo-android-sdk:analytics:2.3.0"
implementation "com.github.klaviyo.klaviyo-android-sdk:push-fcm:2.3.0"
implementation "com.github.klaviyo.klaviyo-android-sdk:analytics:2.4.0"
implementation "com.github.klaviyo.klaviyo-android-sdk:push-fcm:2.4.0"
}
```
</details>
Expand Down Expand Up @@ -280,6 +280,8 @@ This method will check if the app was opened from a notification originating fro
`Opened Push` event with required message tracking parameters. For example:

```kotlin
// Main Activity

override fun onCreate(savedInstanceState: Bundle?) {
/* ... */

Expand All @@ -294,8 +296,9 @@ override fun onNewIntent(intent: Intent?) {
}
```

**Note:** Intent handling may differ depending on your app's architecture. Adjust this example to your use-case,
ensuring that `Klaviyo.handlePush(intent)` is called when your app is opened from a notification.
**Note:** Intent handling may differ depending on your app's architecture. By default, the Klaviyo SDK will use your
app's launch intent for a tapped notification. Adjust this example to your use-case, ensuring that
`Klaviyo.handlePush(intent)` is called whenever your app is opened from a notification.

#### Deep Linking
[Deep Links](https://help.klaviyo.com/hc/en-us/articles/14750403974043) allow you to navigate to a particular
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<!-- Redirect to latest version -->
<meta HTTP-EQUIV="REFRESH" content="0; url=./2.3.0/index.html">
<meta HTTP-EQUIV="REFRESH" content="0; url=./2.4.0/index.html">
4 changes: 2 additions & 2 deletions versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

# Project versioning, run the following gradle command to update version numbers automatically:
# ./gradlew bumpVersion --nextVersion=X.Y.Z
version.klaviyo.versionCode=17
version.klaviyo.versionCode=18

version.klaviyo.versionName=2.3.0
version.klaviyo.versionName=2.4.0

# Android versioning

Expand Down

0 comments on commit e49a36b

Please sign in to comment.