Skip to content

Commit

Permalink
Release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cristidregan committed Jun 5, 2024
1 parent 3ada72c commit dc727f4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions OmetriaSDK/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val versionName = "1.6.2"
val versionName = "1.7.0"

plugins {
id("com.android.library")
Expand Down Expand Up @@ -43,7 +43,7 @@ dependencies {
implementation("androidx.lifecycle:lifecycle-common-java8:2.6.1")

// Add the SDK for Firebase Cloud Messaging
implementation("com.google.firebase:firebase-messaging:23.2.0")
implementation("com.google.firebase:firebase-messaging:24.0.0")
}

// Publishing
Expand All @@ -53,4 +53,4 @@ extra.apply {
set("PUBLISH_VERSION", versionName)
}

apply("${rootProject.projectDir}/scripts/publish-mavencentral.gradle")
apply("${rootProject.projectDir}/scripts/publish-mavencentral.gradle")
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To install the library inside **Android Studio**, declare it as dependency in yo

```gradle
dependencies {
implementation 'com.ometria:android-sdk:1.6.2'
implementation 'com.ometria:android-sdk:1.7.0'
}
```

Expand Down
5 changes: 3 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,6 @@ dependencies {
implementation("androidx.work:work-runtime:2.8.1")

// Add the SDK for Firebase Cloud Messaging
implementation("com.google.firebase:firebase-messaging:23.2.0")
}
implementation("com.google.firebase:firebase-messaging:24.0.0")
implementation("com.google.android.gms:play-services-base:18.4.0")
}
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

<application
android:name=".SampleApp"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
Expand Down Expand Up @@ -45,4 +44,4 @@
</intent-filter>
</service>
</application>
</manifest>
</manifest>

0 comments on commit dc727f4

Please sign in to comment.