Skip to content

Commit

Permalink
Minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
rygelouv committed May 26, 2024
1 parent 964b2a5 commit e5040a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {
applicationId = "app.books.tanga"
minSdk = 24
targetSdk = 34
versionCode = 3
versionCode = 5
versionName = "0.5.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -63,7 +63,7 @@ android {
release {
buildConfigField("String", "REVENUECAT_API_KEY", "\"${secretProperties["revenueCatApiKey"]}\"")
isMinifyEnabled = false // Will change later
isDebuggable = true
isDebuggable = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ class AuthenticationInteractor @Inject constructor(
sessionManager.openSession(sessionId)
user
}.onFailure {
Timber.e(it, "Google sign in failed")
return Result.failure(DomainError.UnableToSignInWithGoogleError(it))
}

Expand Down

0 comments on commit e5040a6

Please sign in to comment.