Skip to content

Commit fcece7e

Browse files
committed
Merge branch 'release/10.13.0'
2 parents 16b8cff + 581e748 commit fcece7e

File tree

317 files changed

+19083
-15278
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+19083
-15278
lines changed

app/build.gradle.kts

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ plugins {
3939
}
4040

4141
android {
42-
compileSdk = 34
42+
compileSdk = 35
4343

4444
defaultConfig {
4545
applicationId = "com.forcetower.uefs"
4646
minSdk = 21
47-
targetSdk = 34
47+
targetSdk = 35
4848
val (code, name) = buildVersion()
4949
versionCode = code
5050
versionName = name
@@ -112,15 +112,15 @@ android {
112112
mapsKey = "AIzaSyAIb0g7GrjLgOwRqmKHhBxbxWKjct8IF8Y"
113113
}
114114
getByName("release") {
115+
manifestPlaceholders += mapOf("crashlyticsEnabled" to true)
115116
signingConfig = signingConfigs.getByName("release")
116117
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
117118
isMinifyEnabled = true
118-
manifestPlaceholders += mapOf("crashlyticsEnabled" to true)
119119
resValue("string", "google_maps_key", mapsKey)
120120
}
121121
getByName("debug") {
122-
applicationIdSuffix = ".debug"
123122
manifestPlaceholders += mapOf("crashlyticsEnabled" to false)
123+
applicationIdSuffix = ".debug"
124124
resValue("string", "google_maps_key", "AIzaSyAIb0g7GrjLgOwRqmKHhBxbxWKjct8IF8Y")
125125
}
126126
}
@@ -133,7 +133,7 @@ android {
133133
kapt {
134134
correctErrorTypes = true
135135
javacOptions {
136-
option("-Xmaxerrs", 1000)
136+
option("-Xmaxerrs", "1000")
137137
}
138138
}
139139

@@ -232,7 +232,6 @@ dependencies {
232232
implementation(libs.play.services.games.v2)
233233
implementation(libs.play.services.auth)
234234
implementation(libs.play.services.location)
235-
implementation(libs.billing)
236235
implementation(libs.review.ktx)
237236
implementation(libs.app.update.ktx)
238237
implementation(libs.feature.delivery.ktx)
@@ -250,6 +249,14 @@ dependencies {
250249
implementation(libs.taptargetview)
251250
implementation(libs.play.services.maps)
252251
implementation(libs.materialdatetimepicker)
252+
implementation(libs.markwon.core)
253+
implementation(libs.markwon.ext.latex)
254+
implementation(libs.markwon.ext.strikethrough)
255+
implementation(libs.markwon.html)
256+
implementation(libs.markwon.image)
257+
implementation(libs.markwon.image.glide)
258+
implementation(libs.markwon.linkify)
259+
253260
testImplementation(libs.junit)
254261
testImplementation(libs.mockk)
255262
testImplementation(libs.androidx.core.testing)

app/proguard-rules.pro

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@
6868
## This was needed because of the CallAdapter. I dont use it anymore, so...
6969
# -keep,allowshrinking class androidx.lifecycle.LiveData
7070

71+
-keep class com.caverock.androidsvg.** { *; }
72+
-dontwarn com.caverock.androidsvg.**
73+
-dontwarn pl.droidsonroids.gif.GifDrawable
74+
7175
-dontwarn okhttp3.internal.platform.ConscryptPlatform
7276
-dontwarn org.conscrypt.ConscryptHostnameVerifier
7377
-dontwarn org.conscrypt.Conscrypt$Version

0 commit comments

Comments
 (0)