• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    // See: http://go/android-license-faq
3    default_applicable_licenses: ["Android-Apache-2.0"],
4}
5
6android_test {
7    name: "ApiDemos",
8    // Only compile source java files in this apk.
9    srcs: [
10        "src/**/*.java",
11        "src/com/example/android/apis/app/IRemoteService.aidl",
12        "src/com/example/android/apis/app/IRemoteServiceCallback.aidl",
13        "src/com/example/android/apis/app/ISecondary.aidl",
14    ],
15    static_libs: [
16        "androidx-constraintlayout_constraintlayout",
17        "androidx.legacy_legacy-support-v4",
18    ],
19    sdk_version: "current",
20    dex_preopt: {
21        enabled: false,
22    },
23    test_suites: ["device-tests"],
24}
25