Android Studio : Missing Strip Tool

Sanket B picture Sanket B · Nov 22, 2018 · Viewed 19.1k times · Source

I am constantly getting this warning while building my android studio code using terminal command gradle clean assembleRelease:

Unable to strip library 'lib.so' due to missing strip tool for ABI 'ARMEABI'. Packaging it as is.

Please help me on how to get this warning resolved.

Note: I know this won't affect the behaviour of my app, but my APK is too bulky and this will surely help me reduce APK size. So I need this resolved.

Answer

Dhiraj Gupta picture Dhiraj Gupta · Nov 12, 2019

The default installed NDK doesn't seem to have the tools required to strip binaries that have been built with ARMEABI support, so it ends up packaging the whole library, which increases the built file size substantially.

I've found that installing the "NDK (Side by side)" tool from Android Studio -> Tools -> SDK Manager -> SDK Tools takes care of this warning and also reduces the built APK size, especially for React Native projects.