pull/2102/merge
vibhor-kulshrestha 1 week ago committed by GitHub
commit bf2393c8b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -150,3 +150,13 @@ baselineProfile {
dependencyGuard {
configuration("prodReleaseRuntimeClasspath")
}
val benchmarksProject = rootProject.findProject(":benchmarks")
if (benchmarksProject != null) {
tasks.matching { it.name == "createProdNonMinifiedReleaseApkListingFileRedirect" }
.configureEach {
dependsOn(benchmarksProject.tasks.matching {
it.name.contains("packageProdNonMinifiedRelease")
})
}
}

@ -26,7 +26,7 @@ android {
defaultConfig {
minSdk = 28
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArguments["androidx.benchmark.enabledRules"] = "BaselineProfile"
buildConfigField("String", "APP_BUILD_TYPE_SUFFIX", "\"\"")
}

Loading…
Cancel
Save