cc_library_shared {
    // This name is dictated by the fact that the SQLite code calls loadLibrary("sqlite_jni").
    name: "libsqlite_jni",
    host_supported: true,
    cflags: [
        "-Werror",
        "-Wno-error=sign-compare",
        "-Wno-unused-parameter",
    ],
    srcs: ["src/main/native/sqlite_jni.c"],
    static_libs: ["libsqlite_static_minimal"],

    sdk_version: "23",
}