Android Studio : Missing Strip Tool

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.

Leave a Comment