Skip to content
Merged
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
6 changes: 6 additions & 0 deletions stream-chat-android-compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ baselineProfile {
}
}

// Paparazzi renders and compresses every snapshot in the forked test worker, which defaults to a
// 512 MB heap. Raise it so recordPaparazziDebug / verifyPaparazziDebug do not run out of memory.
tasks.withType<Test>().configureEach {
maxHeapSize = "4g"
}

tasks.withType<KotlinCompile> {
compilerOptions.freeCompilerArgs.addAll(
listOf(
Expand Down
Loading