endian11
2019-12-30 302ab8c069827c399cdd2664c79126eda71fe2f9
lib/build.gradle
@@ -12,6 +12,16 @@
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        externalNativeBuild {
            cmake {
                cppFlags ""
            }
        }
        ndk {
            // Specifies the ABI configurations of your native
            // libraries Gradle should build and package with your APK.
            abiFilters 'armeabi-v7a','arm64-v8a'
        }
    }
    buildTypes {
@@ -21,6 +31,11 @@
        }
    }
    externalNativeBuild {
        cmake {
            path "src/main/cpp/CMakeLists.txt"
        }
    }
}
dependencies {