Skip to content

Commit 35dba09

Browse files
mojavadfacebook-github-bot
authored andcommitted
Add explicit Build Tools Version to RN Tester Android App Benchmark (#52216)
Summary: After bumping to SDK version 36, the build process for Android was still pulling in SDK v35 unnecessarily. This PR fixes that issue. ## Changelog: [ANDROID] [FIXED] - Added explicit build tool version to RN Tester build.gradle to avoid automatic installation of Android SDK Build Tools. Pull Request resolved: #52216 Test Plan: Tested in fork pipeline to ensure it's working correctly. This is the logs from the pipeline before: ![image](https://github.com/user-attachments/assets/9dc7f158-8dea-437e-836e-e5f500b3d5ff) And this is after the fix: ![image](https://github.com/user-attachments/assets/c6cc1c0a-5823-41cb-ba32-027b69d6eaa6) Reviewed By: rshest Differential Revision: D77219569 Pulled By: cortinico fbshipit-source-id: 7a0ca462d00bfc4b015a30807aaef999ff60c719
1 parent 9e96acb commit 35dba09

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

packages/rn-tester/android/app/benchmark/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ plugins {
1313
android {
1414
namespace = "com.example.benchmark"
1515
compileSdk = libs.versions.compileSdk.get().toInt()
16+
buildToolsVersion = libs.versions.buildTools.get()
1617

1718
defaultConfig {
1819
minSdk = libs.versions.minSdk.get().toInt()

0 commit comments

Comments
 (0)