Philipp Nowak
08/08/2025, 7:14 AMfalse
and the other one to true
to see the impact. Is that possible? I thought about using system-properties
but it doesn't seem to be the right one here since it translates to the -D
arg instead of -P
Vampire
08/08/2025, 8:32 AMVampire
08/08/2025, 8:34 AMVampire
08/08/2025, 8:34 AM-Dorg.gradle.project.foo=bar
is the same as setting -P foo=bar
Vampire
08/08/2025, 8:35 AMORG_GRADLE_PROJECT_foo=bar
Vampire
08/08/2025, 8:37 AMgradle-args = ["-P", "foo=bar"]
in the scenario file, but I have no experience with the profilerPhilipp Nowak
08/08/2025, 8:51 AMsystem-properties
as well as the gradle-args
variant you mentioned 🙂Asehinde Juwon
08/08/2025, 2:11 PM* What went wrong:
Execution failed for task ':app:compileReleaseKotlin'.
> A failure occurred while executing org.jetbrains.kotlin.compilerRunner.GradleCompilerRunnerWithWorkers$GradleKotlinCompilerWorkAction
> Compilation error. See log for more details
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at <https://help.gradle.org>.
BUILD FAILED in 5m 47s
Error: Gradle build failed with unknown error. See logs for the "Run gradlew" phase for more information.
Vampire
08/08/2025, 2:40 PM