blob: 9cddc188ef1d53e3ea64fc4b79b142f114fe8e0b [file] [log] [blame]
Rodrigo Lagosbebe58b2018-03-03 08:21:46 -08001#
2# Copyright (C) 2018 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH:= $(call my-dir)
18
19include $(CLEAR_VARS)
20
21LOCAL_SRC_FILES := $(call all-java-files-under, src)
22
23LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
24
25LOCAL_MODULE := car-settings-lib
26LOCAL_MODULE_TAGS := optional
27
28LOCAL_USE_AAPT2 := true
29
Alan Viverette035f8372018-03-23 11:40:09 -040030LOCAL_STATIC_ANDROID_LIBRARIES := \
davidlnbe5d04f2019-03-12 12:56:01 -070031 androidx.annotation_annotation \
32 androidx.loader_loader
Rodrigo Lagosbebe58b2018-03-03 08:21:46 -080033
34LOCAL_PROGUARD_ENABLED := disabled
35
Colin Cross73bec232018-06-15 22:46:53 -070036LOCAL_MIN_SDK_VERSION := 24
Rakesh Iyer178c0a62016-10-19 23:35:19 -070037
Rodrigo Lagosbebe58b2018-03-03 08:21:46 -080038include $(BUILD_STATIC_JAVA_LIBRARY)
39
40# Use the following include to make our test apk.
41ifeq (,$(ONE_SHOT_MAKEFILE))
42 include $(call all-makefiles-under,$(LOCAL_PATH))
43endif