blob: 57306008bf1af414f9a8877d1ae7bea691b0273a [file] [log] [blame]
Jaewoong Jung0e66f062019-05-09 12:43:15 -07001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Julia Reynolds38cdbaf2019-01-30 12:16:58 -050015android_library {
16 name: "ExtServices-core",
17 srcs: [
18 "src/**/*.java",
19 ],
20 resource_dirs: [
21 "res",
22 ],
23
24 manifest: "AndroidManifest.xml",
Jaewoong Jung0e66f062019-05-09 12:43:15 -070025}
26
27android_app {
28 name: "ExtServices",
29 srcs: ["src/**/*.java"],
30 platform_apis: true,
31 certificate: "platform",
32 optimize: {
33 proguard_flags_files: ["proguard.proguard"],
34 },
35 privileged: true,
36 min_sdk_version: "28",
37}