Search code examples
androidxamarinxamarin.android

Android requiring 64 bit versions


Android announced the following: (https://android-developers.googleblog.com/2019/01/get-your-apps-ready-for-64-bit.html)

Starting August 1, 2019:

  • All new apps and app updates that include native code are required to provide 64-bit versions in addition to 32-bit versions when publishing to Google Play.
  • Extension: Google Play will continue to accept 32-bit only updates to existing games that use Unity 5.6.x or older until August 2021.

My team develops using Xamarin. In that selecting the architecture for 64 (in addition to 32) is all we have to do? (See below image)

enter image description here


Solution

  • @Rainmaker this article also has a video of how to do just that

    You just have to go to your Android project options, the Click on build settings. Click on the Advanced tab and Change the configuration to Release and make sure that the “arm64-v8a” ABI is supported. Press OK and you are done.