Skip to content

Commit

Permalink
🚀 4.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemilla committed Oct 17, 2024
1 parent 0df121e commit 637af13
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ dependencyResolutionManagement {

```gradle
dependencies {
implementation 'com.github.trycourier:courier-android:4.5.0' // Groovy
implementation("com.github.trycourier:courier-android:4.5.0") // Gradle.kts
implementation 'com.github.trycourier:courier-android:4.5.1' // Groovy
implementation("com.github.trycourier:courier-android:4.5.1") // Gradle.kts
}
```

Expand Down
2 changes: 1 addition & 1 deletion android/src/main/java/com/courier/android/Courier.kt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Courier private constructor(val context: Context) : Application.ActivityLi
companion object {

// Core
private const val VERSION = "4.5.0"
private const val VERSION = "4.5.1"
var agent: CourierAgent = CourierAgent.NativeAndroid(VERSION)

// Push
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
applicationId "com.courier.example"
minSdk 23
targetSdk 34
versionCode 59
versionCode 60
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
signingConfig signingConfigs.debug
Expand Down

0 comments on commit 637af13

Please sign in to comment.