Skip to content

Commit 75cbf37

Browse files
author
Jonah Williams
authored
[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.
1 parent 17ea956 commit 75cbf37

File tree

1 file changed

+4
-0
lines changed
  • dev/benchmarks/platform_views_layout/android/app

1 file changed

+4
-0
lines changed

dev/benchmarks/platform_views_layout/android/app/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ android {
5757
signingConfig signingConfigs.debug
5858
}
5959
}
60+
61+
packagingOptions {
62+
doNotStrip '**/*.so'
63+
}
6064
}
6165

6266
flutter {

0 commit comments

Comments
 (0)