Open ityancs opened 7 years ago
If i set gradle like this ndk { abiFilters "armeabi" } blur is not work, but ndk { abiFilters "armeabi", "armeabi-v7a", "x86", "mips" } works
ndk { abiFilters "armeabi" }
ndk { abiFilters "armeabi", "armeabi-v7a", "x86", "mips" }
ndk { abiFilters "armeabi", "armeabi-v7a"} is works! Because of enable renderscriptSupportMode but there is not exist libRSSupport.so int armeabi, but has libRSSupport.so for armeabi-v7a!
ndk { abiFilters "armeabi", "armeabi-v7a"}
If i set gradle like this
ndk { abiFilters "armeabi" }
blur is not work, butndk { abiFilters "armeabi", "armeabi-v7a", "x86", "mips" }
works