AndroidException-常见Exception汇总 11月 16, 2018 Android常见Exception 1. Invoke-customs are only supported starting with android 0 –min-api 262. 64位CPU的手机无法加载腾讯X5内核 Invoke-customs are only supported starting with android 0 –min-api 2612345678910//build.gradleandroid { //... ... android { compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } }} 64位CPU的手机无法加载腾讯X5内核1234567891011//build.gradleandroid { defaultConfig { // 指定支持的so架构 ndk { //根据需要 自行选择添加的对应cpu类型的.so库。 abiFilters 'armeabi', 'armeabi-v7a', 'arm64-v8a', "x86" } }}//复制armeabi中的.so文件到armeabi-v7a、arm64-v8a、x86对应的文件夹 Android