I\'m making an application for AndroidTV and get the error
java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file \"/data/ap
So this is the solution for UnsatisfiedLinkError for my case but I think it's general.
Put in gradle.properties this line
android.useDeprecatedNdk=true;
and in build.gradle this line in defaultConfig field
ndk { abiFilters "armeabi", "armeabi-v7a" }