fix: corrected the and updated the string message for the toast. got the build working. It was not pretty.

This commit is contained in:
eddyizm 2025-08-02 18:21:24 -07:00
parent d32d2bcf31
commit 6703704f22
No known key found for this signature in database
GPG key ID: CF5F671829E8158A
8 changed files with 20 additions and 7 deletions

View file

@ -11,7 +11,7 @@ android {
targetSdk 35
versionCode 26
versionName '3.9.0'
versionName '3.9.3'
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
@ -107,4 +107,9 @@ dependencies {
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
implementation 'com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.14'
implementation 'com.squareup.retrofit2:converter-gson:2.11.0'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}