From 53af4e3c839d4db9c86c2df04b307227f5f57567 Mon Sep 17 00:00:00 2001 From: Hur Ali Date: Mon, 8 Jun 2026 17:36:56 +0500 Subject: [PATCH] fix: add line break to gradle.properties for template testing --- .github/workflows/e2e-android-templateapp.yml | 2 +- scripts/release-testing/test-release-local.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-android-templateapp.yml b/.github/workflows/e2e-android-templateapp.yml index 5246d6b59352..1e4283d63693 100644 --- a/.github/workflows/e2e-android-templateapp.yml +++ b/.github/workflows/e2e-android-templateapp.yml @@ -66,7 +66,7 @@ jobs: echo "Feed maven local to gradle.properties" cd /tmp/RNTestProject - echo "react.internal.mavenLocalRepo=$MAVEN_LOCAL" >> android/gradle.properties + echo "\nreact.internal.mavenLocalRepo=$MAVEN_LOCAL" >> android/gradle.properties # Build cd android diff --git a/scripts/release-testing/test-release-local.js b/scripts/release-testing/test-release-local.js index 41f170d31791..d8165c6523eb 100644 --- a/scripts/release-testing/test-release-local.js +++ b/scripts/release-testing/test-release-local.js @@ -292,7 +292,7 @@ async function testRNTestProject( // need to do this here so that Android will be properly setup either way exec( - `echo "react.internal.mavenLocalRepo=${mavenLocalPath}" >> android/gradle.properties`, + `echo "\nreact.internal.mavenLocalRepo=${mavenLocalPath}" >> android/gradle.properties`, ); // Only build the simulator architecture. CI is however generating only that one.