blob: 4f48ead24c9b008cd05fb00485d0e18cd373d8ca [file] [log] [blame]
Sasha Smundak35a7bae2019-01-14 12:46:01 -08001// Copyright (C) 2014 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
15// Core androidplot library
16
17java_library {
18 name: "androidplot",
19 sdk_version: "current",
20 srcs: ["AndroidPlot-Core/src/main/**/*.java"],
21 // b/73499927
22 errorprone: {
23 javacflags: ["-Xep:MissingOverride:OFF"],
24 },
25}
26
27// Demo app
28android_test {
29 name: "AndroidPlotDemos",
30 sdk_version: "current",
31 static_libs: ["androidplot"],
32 resource_dirs: ["Examples/DemoApp/res"],
33 manifest: "Examples/DemoApp/AndroidManifest.xml",
34 srcs: ["Examples/DemoApp/src/**/*.java"],
35
36 // b/73499927
37 errorprone: {
38 javacflags: ["-Xep:MissingOverride:OFF"],
39 },
40
41}