build(nc-android): disable sentry upload proguard mapping files

This commit is contained in:
pierre
2023-08-02 11:18:23 +02:00
parent 6359b38a5d
commit cd70b0de75
2 changed files with 6 additions and 1 deletions
@@ -101,6 +101,12 @@ android {
}
}
sentry {
// TODO disable auto upload of mapping files for now to ease FDroid submission
// (avoiding to have to provide a sentry auth token during compile time)
autoUploadProguardMapping.set(false)
}
dependencies {
implementation("androidx.core:core-ktx:1.10.1")
@@ -19,7 +19,6 @@ import kotlinx.coroutines.flow.first
import kotlinx.coroutines.flow.map
import kotlinx.coroutines.runBlocking
val Context.dataStore: DataStore<Preferences> by preferencesDataStore(name = "settings")
val monitoringKey = booleanPreferencesKey("monitoring")