Skip to content

Commit

Permalink
update dependencies, raise versions
Browse files Browse the repository at this point in the history
  • Loading branch information
TomTasche committed Sep 15, 2024
1 parent 510b53f commit 2e3ba27
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,16 @@ android {
}

dependencies {
implementation platform('com.google.firebase:firebase-bom:33.1.1')
implementation platform('com.google.firebase:firebase-bom:33.3.0')
implementation 'com.google.firebase:firebase-storage'
implementation 'com.google.firebase:firebase-auth'
implementation 'com.google.firebase:firebase-crashlytics-ndk'
implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.firebase:firebase-config'

implementation 'com.google.android.gms:play-services-ads:23.2.0'
implementation 'com.google.android.gms:play-services-ads:23.3.0'
implementation 'com.google.android.play:review:2.0.1'
implementation 'com.google.android.ump:user-messaging-platform:2.2.0'
implementation 'com.google.android.ump:user-messaging-platform:3.0.0'

implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.core:core:1.13.1'
Expand All @@ -144,14 +144,14 @@ dependencies {
implementation 'com.viliussutkus89:wvware-android:1.2.9'
implementation 'com.github.huzongyao:AndroidMagic:v1.1.2'

androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation 'androidx.test:rules:1.5.0'
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.5.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
androidTestImplementation 'androidx.test:rules:1.6.1'
androidTestImplementation 'androidx.test:runner:1.6.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.6.1'
// espresso-idling-resource is used in main sourceSet as well. cannot be just androidTestImplementation
implementation 'androidx.test.espresso:espresso-idling-resource:3.5.1'
implementation 'androidx.annotation:annotation:1.8.0'
implementation 'androidx.test.espresso:espresso-idling-resource:3.6.1'
implementation 'androidx.annotation:annotation:1.8.2'
}

// Without removing .cxx dir on cleanup, double gradle clean is erroring out.
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:installLocation="auto"
android:versionCode="184"
android:versionName="3.30"
android:versionCode="185"
android:versionName="3.31"
tools:ignore="GoogleAppIndexingWarning">

<uses-permission android:name="android.permission.INTERNET" />
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'com.android.application' version '8.4.1' apply false
id 'com.google.gms.google-services'version '4.4.1' apply false
id 'com.google.firebase.crashlytics' version '3.0.1' apply false
id 'com.android.application' version '8.5.2' apply false
id 'com.google.gms.google-services'version '4.4.2' apply false
id 'com.google.firebase.crashlytics' version '3.0.2' apply false
id 'app.opendocument.conanandroidgradleplugin' version "0.9.2" apply false
}

0 comments on commit 2e3ba27

Please sign in to comment.