[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.
This commit is contained in:
Jonah Williams
2025-02-11 21:09:24 -08:00
committed by GitHub
parent 17ea9569da
commit 75cbf377fd

View File

@@ -57,6 +57,10 @@ android {
signingConfig signingConfigs.debug
}
}
packagingOptions {
doNotStrip '**/*.so'
}
}
flutter {