Skip to content Skip to sidebar Skip to footer

How To I Know Android App Supports 64bit?

I have changed the gradle to something like this, which is in accordance with the documentation from Google Dev. then how do I know if my application supports 64 bits? I tried w

Solution 1:

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.

Post a Comment for "How To I Know Android App Supports 64bit?"