How to force Android application to use either 32bit or 64 bit libraries

前端 未结 3 421
既然无缘
既然无缘 2021-02-02 02:32

On a Android device with 64bit ARM, would have two variants of many libraries, 32bit and 64 bit, and their performance could be different. I want to know if there is a way to fo

3条回答
  •  一整个雨季
    2021-02-02 02:43

    https://source.android.com/source/64-bit-builds.html

    Try this in you Android.mk

    LOCAL_MULTILIB := 32 // or 64
    

提交回复
热议问题