1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Merge pull request #441 from owncloud/release/1.0.13

[Release] 1.0.13
This commit is contained in:
Abel García de Prada 2021-11-15 11:22:22 +01:00 committed by GitHub
commit eea5240bd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -19,14 +19,14 @@ dependencies {
} }
android { android {
compileSdkVersion 29 compileSdkVersion 30
defaultConfig { defaultConfig {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 29 targetSdkVersion 30
versionCode = 10001201 versionCode = 10001300
versionName = "1.0.13-beta.1" versionName = "1.0.13"
} }
lintOptions { lintOptions {

View File

@ -9,7 +9,7 @@ object LoggingHelper {
fun startLogging(directory: File, storagePath: String) { fun startLogging(directory: File, storagePath: String) {
fileLoggingTree()?.let { fileLoggingTree()?.let {
Timber.forest().drop(Timber.forest().indexOf(it)) Timber.uproot(it)
} }
if (!directory.exists()) if (!directory.exists())
directory.mkdirs() directory.mkdirs()
@ -18,7 +18,7 @@ object LoggingHelper {
fun stopLogging() { fun stopLogging() {
fileLoggingTree()?.let { fileLoggingTree()?.let {
Timber.forest().drop(Timber.forest().indexOf(it)) Timber.uproot(it)
} }
} }
} }