android studio 2.2 compress all so files in built apk

前端 未结 4 1324
再見小時候
再見小時候 2020-12-31 23:33

After update android studio and plugins, new built apk meets puzzling native problem when launch, I found armeabi/armeabi-v7a so files compressed from 200KB to 10KB. While

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-31 23:51

    There's an undocumented method 'doNotStrip' in packagingOptions, just add following lines in your build.gradle

    packagingOptions{
        doNotStrip "*/armeabi/*.so"
        doNotStrip "*/armeabi-v7a/*.so"
        doNotStrip "*/x86/*.so"
    }
    

    update: it's in 2.3 document.

提交回复
热议问题