Help Center/ Meeting/ Client SDK Reference/ FAQs/ Android SDK/ How Do I Configure 64-bit Libraries?
Updated on 2024-07-30 GMT+08:00

How Do I Configure 64-bit Libraries?

  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