Fix release builds

This commit is contained in:
topjohnwu
2021-05-11 18:40:30 -07:00
parent 408399eae0
commit 09a294c219
2 changed files with 6 additions and 27 deletions

View File

@@ -183,6 +183,8 @@ android.applicationVariants.all {
dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
implementation(kotlin("stdlib"))
// Some dependencies request JDK 8 stdlib, specify manually here to prevent version mismatch
implementation(kotlin("stdlib-jdk8"))
implementation(project(":app:shared"))
implementation("com.github.topjohnwu:jtar:1.0.0")