diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml index 1787414a..ee9d1034 100644 --- a/.idea/deploymentTargetDropDown.xml +++ b/.idea/deploymentTargetDropDown.xml @@ -2,7 +2,7 @@ - + diff --git a/android/core/build.gradle b/android/core/build.gradle index cf896ea3..976b0897 100644 --- a/android/core/build.gradle +++ b/android/core/build.gradle @@ -69,7 +69,7 @@ dependencies { implementation 'com.squareup.okhttp3:okhttp:4.12.0' // Retrofit - implementation 'com.squareup.retrofit2:converter-moshi:2.9.0' + implementation 'com.squareup.retrofit2:converter-moshi:2.10.0-SNAPSHOT' // Moshi implementation 'com.squareup.moshi:moshi:1.15.0' diff --git a/android/networking/build.gradle b/android/networking/build.gradle index 25feb672..4c667672 100644 --- a/android/networking/build.gradle +++ b/android/networking/build.gradle @@ -46,8 +46,8 @@ dependencies { ksp("com.squareup.moshi:moshi-kotlin-codegen:1.15.0") // Retrofit - api 'com.squareup.retrofit2:retrofit:2.9.0' - api 'com.squareup.retrofit2:converter-moshi:2.9.0' + api 'com.squareup.retrofit2:retrofit:2.10.0-SNAPSHOT' + api 'com.squareup.retrofit2:converter-moshi:2.10.0-SNAPSHOT' // Timber implementation 'com.jakewharton.timber:timber:4.7.1' diff --git a/android/trial/build.gradle b/android/trial/build.gradle index 13d27626..2e94abdc 100644 --- a/android/trial/build.gradle +++ b/android/trial/build.gradle @@ -44,7 +44,7 @@ dependencies { implementation 'com.squareup.okhttp3:okhttp:4.12.0' // Retrofit - implementation 'com.squareup.retrofit2:converter-moshi:2.9.0' + implementation 'com.squareup.retrofit2:converter-moshi:2.10.0-SNAPSHOT' // Billing implementation 'com.android.billingclient:billing-ktx:6.1.0' diff --git a/build.gradle.kts b/build.gradle.kts index 7dbe91f3..ecf15bb8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ buildscript { mavenCentral() } dependencies { - classpath("com.android.tools.build:gradle:8.1.4") + classpath("com.android.tools.build:gradle:8.2.0") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.20") classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.5") classpath("com.google.gms:google-services:4.4.0") @@ -25,5 +25,6 @@ allprojects { maven("https://jitpack.io") maven("https://plugins.gradle.org/m2/") maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") + maven("https://oss.sonatype.org/content/repositories/snapshots") } } diff --git a/gradle.properties b/gradle.properties index c0acfeb0..b101ab7d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -39,3 +39,6 @@ kotlin.code.style=official # https://developer.android.com/build/releases/gradle-plugin#default-changes android.defaults.buildfeatures.resvalues=false android.defaults.buildfeatures.shaders=false + +# Disable R8 full mode for now, as it's causing crashes in Retrofit Adapters +android.enableR8.fullMode=false \ No newline at end of file