[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:
parent
76d7df5548
commit
a8cc9cb70d
1 changed files with 7 additions and 0 deletions
|
@ -33,6 +33,13 @@ android {
|
||||||
lintOptions {
|
lintOptions {
|
||||||
abortOnError false
|
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 {
|
cargo {
|
||||||
|
|
Loading…
Reference in a new issue