有时候修改完so后,无法安装,报错
INSTALL_FAILED_INVALID_APK: Failed to extract native libraries, res=-2
主要是因为在AndroidManifest.xml的application标签中的属性extractNativeLibs为false
android:extractNativeLibs="false"
将其删除,或者改为true
android:extractNativeLibs="true"