[sdks/android] Don't strip Mentat library.

Help folks debugging by including symbols in our native libraries.
Yes, this makes the resulting AAR very large.  The Android ecosystem
seems to be in flux around who is in charge of stripping native
binaries, but for now let's provide symbols and see how consumers
react.
This commit is contained in:
Nick Alexander 2018-07-26 13:06:03 -07:00
parent 76d7df5548
commit a8cc9cb70d

View file

@ -33,6 +33,13 @@ android {
lintOptions {
abortOnError false
}
// Help folks debugging by including symbols in our native libraries. Yes, this makes the
// resulting AAR very large. The Android ecosystem seems to be in flux around who is in charge
// of stripping native binaries, but for now let's provide symbols and see how consumers react.
packagingOptions {
doNotStrip "**/*.so"
}
}
cargo {