Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemilla committed Jan 23, 2023
1 parent fcb398e commit 1d50ce1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ dependencyResolutionManagement {
#### 2. Add the implementation to your app build.gradle file
``` gradle
dependencies {
implementation 'com.github.trycourier:courier-android:1.1.6'
implementation 'com.github.trycourier:courier-android:1.1.7'
}
```
 
Expand Down
8 changes: 4 additions & 4 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.github.jitpack'
artifactId = 'android-example'
version = '1.0'
groupId = 'com.courier.android'
artifactId = 'android'
version = '1.1.7'
from components.java
}
}
}
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 @@ -21,7 +21,7 @@ class Courier private constructor() {
companion object {

var USER_AGENT = CourierAgent.NATIVE_ANDROID
internal const val VERSION = "1.1.6"
internal const val VERSION = "1.1.7"
internal const val TAG = "Courier SDK"
internal const val COURIER_PENDING_NOTIFICATION_KEY = "courier_pending_notification_key"
internal val eventBus by lazy { NotificationEventBus() }
Expand Down

0 comments on commit 1d50ce1

Please sign in to comment.