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 3d4b2ee commit fcb398e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 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.5'
implementation 'com.github.trycourier:courier-android:1.1.6'
}
```
 
Expand Down
26 changes: 13 additions & 13 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,6 @@ plugins {
id 'maven-publish'
}

afterEvaluate {
publishing {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
from components.release
groupId = 'com.courier.android'
version = '1.1.5'
}
}
}
}

android {

compileSdk 33
Expand Down Expand Up @@ -66,4 +53,17 @@ dependencies {
// Firebase Messaging
api 'com.google.firebase:firebase-messaging-ktx:23.1.0'

}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.github.jitpack'
artifactId = 'android-example'
version = '1.0'
}
}
}
}
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.5"
internal const val VERSION = "1.1.6"
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 fcb398e

Please sign in to comment.