Android导入Unity 3D运行后提示:your hardware does not support this application

运行提示弹框 your hardware does not support this application
解决办法:在app的build.gradle 下的defaultConfig里加入

ndk {
abiFilters 'armeabi-v7a', 'x86'
}

原文地址:https://www.cnblogs.com/wang-jingyuan/p/13594949.html