Merge branch 'main' of github.com:MM2-0/Kvaesitso
This commit is contained in:
commit
952225ca12
@ -31,7 +31,6 @@ object CrashReporter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
suspend fun getCrashReport(filePath: String): CrashReport {
|
suspend fun getCrashReport(filePath: String): CrashReport {
|
||||||
val path = CrashReporter.getCrashReportPath()?.takeIf { it.isEmpty() } ?: CrashUtil.getDefaultPath()
|
|
||||||
return CrashReport.fromFile(File(filePath), true)
|
return CrashReport.fromFile(File(filePath), true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
|
|
||||||
plugins {
|
plugins {
|
||||||
alias(libs.plugins.android.library)
|
alias(libs.plugins.android.library)
|
||||||
alias(libs.plugins.kotlin.android)
|
alias(libs.plugins.kotlin.android)
|
||||||
@ -6,10 +5,10 @@ plugins {
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "de.mm20.launcher2.location"
|
namespace = "de.mm20.launcher2.location"
|
||||||
compileSdk = 34
|
compileSdk = libs.versions.compileSdk.get().toInt()
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk = 21
|
minSdk = libs.versions.minSdk.get().toInt()
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
consumerProguardFiles("consumer-rules.pro")
|
consumerProguardFiles("consumer-rules.pro")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user