summaryrefslogtreecommitdiff
path: root/Android.bp
blob: c5a4f18034cde0f6c0eeff3446a7351c72871899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package {
    // See: http://go/android-license-faq
    default_applicable_licenses: ["Android-Apache-2.0"],
}

android_app {
    name: "SampleLocationAttribution",
    resource_dirs: ["res"],
    static_libs: [
        "androidx.core_core",
        "androidx.appcompat_appcompat",
    ],
    // Build all java files in the src subdirectory
    srcs: ["src/**/*.java"],
    sdk_version: "current",
    product_specific: true,
}