Skip to content

Commit

Permalink
Merge branch 'release/10.13.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ForceTower committed Oct 23, 2024
2 parents 16b8cff + 581e748 commit fcece7e
Show file tree
Hide file tree
Showing 317 changed files with 19,083 additions and 15,278 deletions.
19 changes: 13 additions & 6 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ plugins {
}

android {
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "com.forcetower.uefs"
minSdk = 21
targetSdk = 34
targetSdk = 35
val (code, name) = buildVersion()
versionCode = code
versionName = name
Expand Down Expand Up @@ -112,15 +112,15 @@ android {
mapsKey = "AIzaSyAIb0g7GrjLgOwRqmKHhBxbxWKjct8IF8Y"
}
getByName("release") {
manifestPlaceholders += mapOf("crashlyticsEnabled" to true)
signingConfig = signingConfigs.getByName("release")
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
isMinifyEnabled = true
manifestPlaceholders += mapOf("crashlyticsEnabled" to true)
resValue("string", "google_maps_key", mapsKey)
}
getByName("debug") {
applicationIdSuffix = ".debug"
manifestPlaceholders += mapOf("crashlyticsEnabled" to false)
applicationIdSuffix = ".debug"
resValue("string", "google_maps_key", "AIzaSyAIb0g7GrjLgOwRqmKHhBxbxWKjct8IF8Y")
}
}
Expand All @@ -133,7 +133,7 @@ android {
kapt {
correctErrorTypes = true
javacOptions {
option("-Xmaxerrs", 1000)
option("-Xmaxerrs", "1000")
}
}

Expand Down Expand Up @@ -232,7 +232,6 @@ dependencies {
implementation(libs.play.services.games.v2)
implementation(libs.play.services.auth)
implementation(libs.play.services.location)
implementation(libs.billing)
implementation(libs.review.ktx)
implementation(libs.app.update.ktx)
implementation(libs.feature.delivery.ktx)
Expand All @@ -250,6 +249,14 @@ dependencies {
implementation(libs.taptargetview)
implementation(libs.play.services.maps)
implementation(libs.materialdatetimepicker)
implementation(libs.markwon.core)
implementation(libs.markwon.ext.latex)
implementation(libs.markwon.ext.strikethrough)
implementation(libs.markwon.html)
implementation(libs.markwon.image)
implementation(libs.markwon.image.glide)
implementation(libs.markwon.linkify)

testImplementation(libs.junit)
testImplementation(libs.mockk)
testImplementation(libs.androidx.core.testing)
Expand Down
4 changes: 4 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@
## This was needed because of the CallAdapter. I dont use it anymore, so...
# -keep,allowshrinking class androidx.lifecycle.LiveData

-keep class com.caverock.androidsvg.** { *; }
-dontwarn com.caverock.androidsvg.**
-dontwarn pl.droidsonroids.gif.GifDrawable

-dontwarn okhttp3.internal.platform.ConscryptPlatform
-dontwarn org.conscrypt.ConscryptHostnameVerifier
-dontwarn org.conscrypt.Conscrypt$Version
Expand Down
Loading

0 comments on commit fcece7e

Please sign in to comment.