Fix keystore not matching
This commit is contained in:
parent
14f1d046ab
commit
bb7bfaad26
|
|
@ -51,10 +51,7 @@ android {
|
||||||
kotlinCompilerExtensionVersion = composeVersion
|
kotlinCompilerExtensionVersion = composeVersion
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets["main"].assets.srcDirs(
|
sourceSets["main"].assets.srcDirs(rootProject.projectDir.resolve("out/assets"))
|
||||||
projects.patch.dependencyProject.projectDir.resolve("src/main/assets"),
|
|
||||||
rootProject.projectDir.resolve("out/assets")
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
afterEvaluate {
|
afterEvaluate {
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ tasks.jar {
|
||||||
from(configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) })
|
from(configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) })
|
||||||
|
|
||||||
into("assets") {
|
into("assets") {
|
||||||
from(projects.patch.dependencyProject.projectDir.resolve("src/main/assets"))
|
from("src/main/assets")
|
||||||
from("${rootProject.projectDir}/out/assets")
|
from("${rootProject.projectDir}/out/assets")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,3 @@ dependencies {
|
||||||
implementation("com.beust:jcommander:1.82")
|
implementation("com.beust:jcommander:1.82")
|
||||||
implementation("com.google.code.gson:gson:2.8.9")
|
implementation("com.google.code.gson:gson:2.8.9")
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets["main"].resources {
|
|
||||||
srcDirs("src/main/java")
|
|
||||||
include("**/*.*")
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue