feat(build): auto-generate baseline prof when building playRelease

This commit is contained in:
Nishant Mishra
2025-12-20 19:22:21 +05:30
parent 2ce3801728
commit a010e11f3e

View File

@@ -102,6 +102,14 @@ android {
includeInApk = false
includeInBundle = false
}
baselineProfile {
variants {
create("playRelease") {
automaticGenerationDuringBuild = true
}
}
}
}
dependencies {