0

I have changed the gradle to something like this,

enter image description here which is in accordance with the documentation from Google Dev.

then how do I know if my application supports 64 bits?

I tried with Build -> Analyze APK, but I did not find the lib folder or file with the format .so. enter image description here how to solved this?

  • 1
    documentation on the 64 bit support, from Google itself: https://developer.android.com/distribute/best-practices/develop/64-bit – TooManyEduardos Feb 08 '19 at 05:07
  • 1
    According to doc if lib folder is not contain in generated apk then your application support both 32 and 64 bit.. – Chirag Nahar Feb 08 '19 at 06:02

1 Answers1

0

The 64 bit change only affects apps that use "native code", ie code that compiles for the processor on the device, as opposed to being written in Java or Kotlin.

This will only be true for you if:

  • You have written such native code (probably in C or C++) using the Android NDK
  • You use a third party library that has native code

If the former, then you should know how to target more processors (See this page). If the latter then you will need to talk to the developer of the third party library.

But if your app has no .so files, and it is entirely written in Java or Kotlin, you don't need to do anything, it supports 64 bit.

Nick Fortescue
  • 13,530
  • 1
  • 31
  • 37