summaryrefslogtreecommitdiff
path: root/Android.bp
blob: dad4cd0c5025dfd224c9cc79948316a52581f8e2 (plain)
1
2
3
4
5
6
7
8
9
10
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: ["-Wno-unused-parameter"],
    srcs: ["src/main/native/sqlite_jni.c"],
    static_libs: ["libsqlite_static_minimal"],

    sdk_version: "23",
}