From 75cbf377fdfcee8235506cf231f428bc3e542b07 Mon Sep 17 00:00:00 2001 From: Jonah Williams Date: Tue, 11 Feb 2025 21:09:24 -0800 Subject: [PATCH] [devicelab] dont strip symbols in platform views layout test. (#163101) The hcpp integration test is crashing I'd like to see why and also not deal with manually downloading symbol files and using ndk-stack. Since we don't strip the libraries, all we need to do is add a gradle configuration so that stack traces are readable in the logs. --- dev/benchmarks/platform_views_layout/android/app/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev/benchmarks/platform_views_layout/android/app/build.gradle b/dev/benchmarks/platform_views_layout/android/app/build.gradle index 9504f0ae17..621fa766b7 100644 --- a/dev/benchmarks/platform_views_layout/android/app/build.gradle +++ b/dev/benchmarks/platform_views_layout/android/app/build.gradle @@ -57,6 +57,10 @@ android { signingConfig signingConfigs.debug } } + + packagingOptions { + doNotStrip '**/*.so' + } } flutter {