bilibili / DanmakuFlameMaster

Android开源弹幕引擎·烈焰弹幕使 ~
http://app.bilibili.com/
Apache License 2.0
9.54k stars 2.1k forks source link

64位ndkbitmap so提供 #418

Closed lixian5968 closed 5 years ago

lixian5968 commented 5 years ago

大佬 打扰下,从 2019 年 8 月 1 日开始,在 Google Play 上发布的应用必须支持 64 位架构。 https://developer.android.google.cn/distribute/best-practices/develop/64-bit 有提供com.github.ctiao:ndkbitmap-armv8a:0.9.21 的计划吗?

xinledanding commented 5 years ago

对呀很着急呀

wrh0313 commented 5 years ago

是不是没在维护了?

lixian5968 commented 5 years ago

源码有写,只有在32位上加载so,应该不需要导入了 NativeBitmapFactory public static void loadLibs() { if (notLoadAgain) { return; } if (!(DeviceUtils.isRealARMArch() || DeviceUtils.isRealX86Arch())) { notLoadAgain = true; nativeLibLoaded = false; return; } if (nativeLibLoaded) { return; }