summaryrefslogtreecommitdiff
path: root/Android.bp
blob: 5ab493410598c8ac28be183cb8b8d3316b2a574b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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",
}

java_library {
    name: "sqlite-jdbc",
    hostdex: true,
    srcs: ["src/main/java/**/*.java"],
    sdk_version: "core_current",
}