Skip to content

Commit bf55b52

Browse files
committed
Chore: add debugSymbolLevel full
1 parent ecfc320 commit bf55b52

File tree

7 files changed

+5
-1
lines changed

7 files changed

+5
-1
lines changed

core/src/main/kotlin/io/github/sungbin/gitmessengerbot/core/bot/api/File.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import io.github.jisungbin.gitmessengerbot.common.core.Storage
1313

1414
internal class File {
1515
fun save(path: String, content: String) = Storage.write(path, content)
16-
fun read(path: String, _null: String? = null) = Storage.read(path, _null)
16+
fun read(path: String, _null: String? = null) = Storage.read(path, _null)
1717
fun append(path: String, content: String, appendPrefix: String) =
1818
Storage.append(path, content, appendPrefix)
1919
}

picture/ic_round_logo_512.png

31.7 KB
Loading

picture/preview-dashboard.png

125 KB
Loading

picture/preview-editor.png

56.9 KB
Loading

picture/preview-setting.png

117 KB
Loading

picture/simple-banner.png

25.8 KB
Loading

presentation/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ android {
4848
isDebuggable = false
4949
isMinifyEnabled = true
5050
isShrinkResources = true
51+
52+
ndk {
53+
debugSymbolLevel = "FULL"
54+
}
5155
}
5256
}
5357

0 commit comments

Comments
 (0)