From b934280c65e02008c45be46ea66ad40f87326091 Mon Sep 17 00:00:00 2001 From: mikemilla Date: Wed, 3 Jul 2024 13:01:57 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=203.5.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- android/build.gradle | 2 +- android/src/main/java/com/courier/android/Courier.kt | 2 +- app/build.gradle | 4 ++-- build.gradle | 7 +++---- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 05a7873..df499d5 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ dependencyResolutionManagement { ```gradle dependencies { - implementation 'com.github.trycourier:courier-android:3.5.9' + implementation 'com.github.trycourier:courier-android:3.5.10' } ``` diff --git a/android/build.gradle b/android/build.gradle index 76cbb34..844f6aa 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -46,7 +46,7 @@ dependencies { // Internal APIs implementation 'androidx.core:core-ktx:1.13.1' - implementation 'androidx.appcompat:appcompat:1.7.0' + implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'com.google.android.material:material:1.12.0' diff --git a/android/src/main/java/com/courier/android/Courier.kt b/android/src/main/java/com/courier/android/Courier.kt index 957a106..e48f469 100644 --- a/android/src/main/java/com/courier/android/Courier.kt +++ b/android/src/main/java/com/courier/android/Courier.kt @@ -59,7 +59,7 @@ class Courier private constructor(internal val context: Context) : Application.A companion object { var USER_AGENT = CourierAgent.NATIVE_ANDROID - internal const val VERSION = "3.5.9" + internal const val VERSION = "3.5.10" internal const val TAG = "Courier SDK" internal const val COURIER_PENDING_NOTIFICATION_KEY = "courier_pending_notification_key" internal val eventBus by lazy { NotificationEventBus() } diff --git a/app/build.gradle b/app/build.gradle index b765ef9..9f5a5fd 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,7 +12,7 @@ android { applicationId "com.courier.example" minSdk 23 targetSdk 34 - versionCode 24 + versionCode 25 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" signingConfig signingConfigs.debug @@ -54,7 +54,7 @@ dependencies { implementation 'com.squareup.okhttp3:okhttp:4.10.0' implementation 'androidx.core:core-ktx:1.13.1' - implementation 'androidx.appcompat:appcompat:1.7.0' + implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'com.google.android.material:material:1.12.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7' diff --git a/build.gradle b/build.gradle index ef1a909..05b14ea 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,6 @@ buildscript { repositories { google() mavenCentral() - maven { url "https://jitpack.io" } } dependencies { // Add the dependency for the Google services Gradle plugin @@ -13,11 +12,11 @@ buildscript { } plugins { - id 'com.android.application' version '8.0.2' apply false - id 'com.android.library' version '8.0.2' apply false + id 'com.android.application' version '7.3.0' apply false + id 'com.android.library' version '7.3.0' apply false id 'org.jetbrains.kotlin.android' version '1.7.0' apply false } -tasks.register('clean', Delete) { +task clean(type: Delete) { delete rootProject.buildDir } \ No newline at end of file