Create in-app logging framework

This commit is contained in:
2020-07-27 22:19:21 +02:00
parent 9f8fd3f515
commit 7ba2ca80ef
30 changed files with 495 additions and 30 deletions

View File

@@ -27,6 +27,9 @@ android {
}
dependencies {
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
def room_version = "2.2.5"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7"
@@ -41,6 +44,9 @@ dependencies {
implementation 'com.google.dagger:dagger-android-support:2.15'
implementation 'com.github.adrielcafe:AndroidAudioConverter:0.0.8'
implementation 'org.luaj:luaj-jse:3.0.1'
implementation "org.threeten:threetenbp:1.4.4"
implementation "androidx.room:room-runtime:$room_version"
kapt "androidx.room:room-compiler:$room_version"
kapt 'com.google.dagger:dagger-android-processor:2.15'
kapt 'com.google.dagger:dagger-compiler:2.15'
testImplementation 'junit:junit:4.12'