RenderScript Support Library crashes on x86 devices

℡╲_俬逩灬. 提交于 2019-12-05 10:46:45

I meet the same issue when I using Build Tools 21.1.1 and proguard, you may need to use the following proguard settings:

-keepclasseswithmembernames class * {
    native <methods>;
}
-keep class android.support.v8.renderscript.** { *; }

For more infomation: Using the Android Renderscript v8 Support Library

With Build Tools 21.1.1 this issue disappear.

I think you should also include the native libraries from \build-tools\19.0.2\renderscript\lib\packaged

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!