Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ android {
// who clones the code to sign and run the release variant, use the debug signing key.
// TODO: Abstract the signing configuration to a separate file to avoid hardcoding this.
signingConfig = signingConfigs.named("debug").get()
// Ensure Baseline Profile is fresh for release builds.
baselineProfile.automaticGenerationDuringBuild = true
}
}

Expand Down Expand Up @@ -145,6 +143,11 @@ baselineProfile {

// Make use of Dex Layout Optimizations via Startup Profiles
dexLayoutOptimization = true

// Ensure Baseline Profile is fresh for release builds.
variants.create("release") {
automaticGenerationDuringBuild = true
}
}

dependencyGuard {
Expand Down
Loading