How to solve the error 64-bit requirement error invoke in play store?

依然范特西╮ 提交于 2019-12-23 05:05:40

问题


I don't know how to solve the 64-bit requirement issue

already i added this line. ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'

it is not unity code android app

but no use.. in playstore still shows the error message.


回答1:


For this, please try following steps:

  1. Analyze your app apk by clicking on Build > Analyze Apk
  2. Then Choose the required apk.
  3. Then click on lib folder and Check to if any '.so' files in the arm64-v8a or x86_64 folder.
  4. If it contains then app is 64-bit. No need to make any change.
  5. If not, then add

ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'

in defaultConfig of build.gradle file

Hope it works for you !!!



来源:https://stackoverflow.com/questions/58143338/how-to-solve-the-error-64-bit-requirement-error-invoke-in-play-store

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