-
Adrien Béraud authored
Change-Id: I375867b65b2f3b53caef28b6b8dca5159423a90e
Adrien Béraud authoredChange-Id: I375867b65b2f3b53caef28b6b8dca5159423a90e
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
build.gradle.kts 1.03 KiB
val kotlin_version: String by rootProject.extra
val hilt_version: String by rootProject.extra
val dokka_version: String by rootProject.extra
plugins {
id("kotlin")
id("java")
kotlin("kapt")
}
dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
// VCard parsing
implementation ("com.googlecode.ez-vcard:ez-vcard:0.11.3")
// QRCode encoding
implementation ("com.google.zxing:core:3.4.1")
// dependency injection
implementation( "javax.inject:javax.inject:1")
// ORM
implementation ("com.j256.ormlite:ormlite-core:5.6")
// Required -- JUnit 4 framework
testImplementation ("junit:junit:4.13.2")
// RxJava
implementation ("io.reactivex.rxjava3:rxjava:3.1.3")
// gson
implementation ("com.google.code.gson:gson:2.8.9")
api("com.google.dagger:dagger:$hilt_version")
kapt("com.google.dagger:dagger-compiler:$hilt_version")
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}