Gradle防止so裁剪导致的崩溃

app/build.gradle

    // 禁止so裁剪优化
    packagingOptions {
        doNotStrip "**/*.so"
    }

你可能感兴趣的:(Gradle防止so裁剪导致的崩溃)