From 4b13d31134d1c31bd331e92ffe8d410984529212 Mon Sep 17 00:00:00 2001 From: Brandon Lam Date: Sat, 11 Mar 2023 13:57:36 -0800 Subject: [PATCH] Bump version (3.4.1) --- app/build.gradle | 16 ++++++++-------- build.gradle | 10 +++++----- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7551355..f64bc84 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -17,8 +17,8 @@ android { applicationId 'com.b_lam.resplash' minSdkVersion 21 targetSdkVersion 33 - versionCode 60 - versionName '3.4.0' + versionCode 61 + versionName '3.4.1' testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' buildConfigField("String", "RELEASE_APP_ID", localProperties['releaseAppId']) buildConfigField("String", "RELEASE_SECRET", localProperties['releaseSecret']) @@ -96,7 +96,7 @@ dependencies { kapt 'androidx.room:room-compiler:2.5.0' // Material components - implementation 'com.google.android.material:material:1.9.0-alpha01' + implementation 'com.google.android.material:material:1.9.0-alpha02' // Billing implementation 'com.android.billingclient:billing-ktx:5.1.0' @@ -126,19 +126,19 @@ dependencies { kapt 'com.github.bumptech.glide:compiler:4.13.2' // Koin - implementation 'io.insert-koin:koin-android:3.2.0' - implementation 'io.insert-koin:koin-androidx-workmanager:3.2.0' + implementation 'io.insert-koin:koin-android:3.3.3' + implementation 'io.insert-koin:koin-androidx-workmanager:3.3.3' // Firebase implementation platform('com.google.firebase:firebase-bom:31.2.0') implementation 'com.google.firebase:firebase-analytics-ktx:21.2.0' - implementation 'com.google.firebase:firebase-crashlytics:18.3.4' + implementation 'com.google.firebase:firebase-crashlytics:18.3.5' implementation('com.google.firebase:firebase-inappmessaging-ktx:20.1.3', { exclude group: 'io.grpc', module: 'grpc-okhttp' }) // Workaround for https://github.com/firebase/firebase-android-sdk/issues/2642 - implementation 'io.grpc:grpc-okhttp:1.50.2' - implementation 'com.google.firebase:firebase-firestore-ktx:24.4.3' + implementation 'io.grpc:grpc-okhttp:1.52.1' + implementation 'com.google.firebase:firebase-firestore-ktx:24.4.4' implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava' // Play Core diff --git a/build.gradle b/build.gradle index 518759b..181178e 100644 --- a/build.gradle +++ b/build.gradle @@ -1,16 +1,16 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.7.10' + ext.kotlin_version = '1.8.0' repositories { google() mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.4.1' - classpath 'com.google.android.gms:oss-licenses-plugin:0.10.5' - classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.1' - classpath 'com.google.gms:google-services:4.3.13' + classpath 'com.android.tools.build:gradle:7.4.2' + classpath 'com.google.android.gms:oss-licenses-plugin:0.10.6' + classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.4' + classpath 'com.google.gms:google-services:4.3.15' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files