From a010e11f3e968d510eef1e35bb79a06cf4871509 Mon Sep 17 00:00:00 2001 From: Nishant Mishra Date: Sat, 20 Dec 2025 19:22:21 +0530 Subject: [PATCH] feat(build): auto-generate baseline prof when building playRelease --- app/build.gradle.kts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 0a8ffe3..ff12866 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -102,6 +102,14 @@ android { includeInApk = false includeInBundle = false } + + baselineProfile { + variants { + create("playRelease") { + automaticGenerationDuringBuild = true + } + } + } } dependencies {