parent
d5a2e1361b
commit
3eb1f68eb6
6 changed files with 9 additions and 13 deletions
|
@ -76,6 +76,8 @@ dependencies {
|
||||||
|
|
||||||
androidComponents {
|
androidComponents {
|
||||||
beforeVariants(selector().all()) {
|
beforeVariants(selector().all()) {
|
||||||
it.enabled = it.buildType == "benchmark"
|
if (it.buildType != "benchmark") {
|
||||||
|
it.enable = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,10 @@ java {
|
||||||
targetCompatibility = signalJavaVersion
|
targetCompatibility = signalJavaVersion
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlinDslPluginOptions {
|
kotlin {
|
||||||
jvmTarget.set(signalKotlinJvmTarget)
|
jvmToolchain {
|
||||||
|
languageVersion.set(JavaLanguageVersion.of(signalKotlinJvmTarget))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
@ -27,7 +27,6 @@ android {
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk = signalMinSdkVersion
|
minSdk = signalMinSdkVersion
|
||||||
targetSdk = signalTargetSdkVersion
|
|
||||||
}
|
}
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
|
|
|
@ -87,7 +87,7 @@ tasks.register("qa") {
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.register("clean", Delete::class) {
|
tasks.register("clean", Delete::class) {
|
||||||
delete(rootProject.buildDir)
|
delete(rootProject.layout.buildDirectory)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.register("format") {
|
tasks.register("format") {
|
||||||
|
|
|
@ -30,8 +30,6 @@ android {
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk = signalMinSdkVersion
|
minSdk = signalMinSdkVersion
|
||||||
targetSdk = signalTargetSdkVersion
|
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.benchmark.junit4.AndroidBenchmarkRunner"
|
testInstrumentationRunner = "androidx.benchmark.junit4.AndroidBenchmarkRunner"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,11 +21,6 @@ dependencyResolutionManagement {
|
||||||
maven {
|
maven {
|
||||||
url = uri("https://dl.cloudsmith.io/qxAgwaeEE1vN8aLU/mobilecoin/mobilecoin/maven/")
|
url = uri("https://dl.cloudsmith.io/qxAgwaeEE1vN8aLU/mobilecoin/mobilecoin/maven/")
|
||||||
}
|
}
|
||||||
jcenter {
|
|
||||||
content {
|
|
||||||
includeVersion("mobi.upod", "time-duration-picker", "1.1.3")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue