Help Center/ Meeting/ Client SDK Reference/ FAQs/ [Android] How Do I Configure 64-bit Libraries for Android?
Updated on 2023-03-23 GMT+08:00

[Android] How Do I Configure 64-bit Libraries for Android?

  1. Open the build.gradle file in the project directory.

    Figure 1 Project directories

  2. Add the following information to the build.gradle file:

    1
    2
    3
    ndk {
        abiFilters "armeabi-v7a", "arm64-v8a"
    }
    
    Figure 2 Supporting 32-bit and 64-bit libraries
    Figure 3 Supporting only 32-bit libraries
    Figure 4 Supporting only 64-bit libraries