blob: 684a77ac487527f84f47a9edba90a1464203b3e9 [file] [log] [blame]
Tor Norbye3eb5e2b2013-11-13 09:58:36 -08001# Copyright (C) 2013 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
15LOCAL_PATH := $(call my-dir)
16
17include $(CLEAR_VARS)
18LOCAL_MODULE := android-support-annotations
Chris Banes82b55492016-01-22 11:11:47 +000019LOCAL_SDK_VERSION := $(SUPPORT_CURRENT_SDK_VERSION)
Aurimas Liutikasf266a0a2017-10-06 14:26:24 -070020LOCAL_SRC_FILES := $(call all-java-files-under,src/main/java)
Neil Fullere1cd5a12016-02-25 11:41:17 +000021LOCAL_JAVA_LANGUAGE_VERSION := 1.7
Adam Lesinski6759b102016-02-24 19:57:25 -080022LOCAL_AAPT_FLAGS := --add-javadoc-annotation doconly
Tor Norbye3eb5e2b2013-11-13 09:58:36 -080023include $(BUILD_STATIC_JAVA_LIBRARY)