The Android SDK supports the following architectures:

ARMv7, ARMv8, x86, x86_64

In other words, both the 32 and 64 bits versions of ARM and x86 are supported.

 

To target one or more architectures when building an App, include the following in the App's build.gradle file:

1

2

3

4

5

6

7

8

9

10

11

12

13

android {

   // Some other code here.

    splits {

        abi {

            enable true

            // Include one of more architectures to build for below,

            // or leave out the line entirely to build for all available architectures.

            include 'x86''x86_64''armeabi-v7a''arm64-v8a'

            // Indicate whether to build a universal APK, which targets all available architectures.

            universalApk true

        }

    }

}