| Dianne Hackborn | cba2e2c | 2011-02-07 17:42:11 -0800 | [diff] [blame] | 1 | # Copyright (C) 2011 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 | LOCAL_PATH := $(call my-dir) | 
 | 16 |  | 
| Przemyslaw Szczepaniak | 8e65b64 | 2014-05-07 16:40:19 +0100 | [diff] [blame] | 17 | # A helper sub-library that makes direct use of Donut APIs. | 
 | 18 | include $(CLEAR_VARS) | 
 | 19 | LOCAL_MODULE := android-support-v4-donut | 
 | 20 | LOCAL_SDK_VERSION := 4 | 
 | 21 | LOCAL_SRC_FILES := $(call all-java-files-under, donut) | 
| Kirill Grouchnikov | 3ac77bf | 2016-04-27 12:46:47 -0400 | [diff] [blame] | 22 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-annotations android-support-compat | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 23 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Przemyslaw Szczepaniak | 8e65b64 | 2014-05-07 16:40:19 +0100 | [diff] [blame] | 24 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 25 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 26 | support_module_src_files := $(LOCAL_SRC_FILES) | 
| Kirill Grouchnikov | 3ac77bf | 2016-04-27 12:46:47 -0400 | [diff] [blame] | 27 | support_module_java_libraries := android-support-annotations android-support-compat | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 28 |  | 
| Przemyslaw Szczepaniak | 8e65b64 | 2014-05-07 16:40:19 +0100 | [diff] [blame] | 29 | # ----------------------------------------------------------------------- | 
 | 30 |  | 
| Dianne Hackborn | e4417c9 | 2011-04-04 18:48:18 -0700 | [diff] [blame] | 31 | # A helper sub-library that makes direct use of Eclair APIs. | 
 | 32 | include $(CLEAR_VARS) | 
 | 33 | LOCAL_MODULE := android-support-v4-eclair | 
 | 34 | LOCAL_SDK_VERSION := 5 | 
 | 35 | LOCAL_SRC_FILES := $(call all-java-files-under, eclair) | 
| Przemyslaw Szczepaniak | 8e65b64 | 2014-05-07 16:40:19 +0100 | [diff] [blame] | 36 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-donut | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 37 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Dianne Hackborn | e4417c9 | 2011-04-04 18:48:18 -0700 | [diff] [blame] | 38 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 39 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 40 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 41 |  | 
| Dianne Hackborn | e4417c9 | 2011-04-04 18:48:18 -0700 | [diff] [blame] | 42 | # ----------------------------------------------------------------------- | 
 | 43 |  | 
 | 44 | # A helper sub-library that makes direct use of Froyo APIs. | 
 | 45 | include $(CLEAR_VARS) | 
 | 46 | LOCAL_MODULE := android-support-v4-froyo | 
 | 47 | LOCAL_SDK_VERSION := 8 | 
 | 48 | LOCAL_SRC_FILES := $(call all-java-files-under, froyo) | 
| Kirill Grouchnikov | 0f6052f | 2016-05-04 15:30:25 -0400 | [diff] [blame] | 49 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-eclair | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 50 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Dianne Hackborn | e4417c9 | 2011-04-04 18:48:18 -0700 | [diff] [blame] | 51 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 52 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 53 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 54 |  | 
| Dianne Hackborn | e4417c9 | 2011-04-04 18:48:18 -0700 | [diff] [blame] | 55 | # ----------------------------------------------------------------------- | 
 | 56 |  | 
| Adam Powell | 560114f | 2011-09-02 20:25:44 -0700 | [diff] [blame] | 57 | # A helper sub-library that makes direct use of Gingerbread APIs. | 
 | 58 | include $(CLEAR_VARS) | 
 | 59 | LOCAL_MODULE := android-support-v4-gingerbread | 
 | 60 | LOCAL_SDK_VERSION := 9 | 
 | 61 | LOCAL_SRC_FILES := $(call all-java-files-under, gingerbread) | 
| Jeff Brown | c21f57e | 2013-03-07 16:25:37 -0800 | [diff] [blame] | 62 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-froyo | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 63 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Adam Powell | 560114f | 2011-09-02 20:25:44 -0700 | [diff] [blame] | 64 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 65 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 66 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 67 |  | 
| Adam Powell | 560114f | 2011-09-02 20:25:44 -0700 | [diff] [blame] | 68 | # ----------------------------------------------------------------------- | 
 | 69 |  | 
| Dianne Hackborn | 27aea04 | 2011-02-22 13:51:13 -0800 | [diff] [blame] | 70 | # A helper sub-library that makes direct use of Honeycomb APIs. | 
 | 71 | include $(CLEAR_VARS) | 
 | 72 | LOCAL_MODULE := android-support-v4-honeycomb | 
 | 73 | LOCAL_SDK_VERSION := 11 | 
 | 74 | LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb) | 
| Jeff Brown | c21f57e | 2013-03-07 16:25:37 -0800 | [diff] [blame] | 75 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-gingerbread | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 76 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Dianne Hackborn | 27aea04 | 2011-02-22 13:51:13 -0800 | [diff] [blame] | 77 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 78 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 79 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 80 |  | 
| Dianne Hackborn | 27aea04 | 2011-02-22 13:51:13 -0800 | [diff] [blame] | 81 | # ----------------------------------------------------------------------- | 
 | 82 |  | 
| Adam Powell | bc889e3 | 2011-06-13 17:56:50 -0700 | [diff] [blame] | 83 | # A helper sub-library that makes direct use of Ice Cream Sandwich APIs. | 
 | 84 | include $(CLEAR_VARS) | 
 | 85 | LOCAL_MODULE := android-support-v4-ics | 
| Ying Wang | 2f57132 | 2011-09-19 16:30:39 -0700 | [diff] [blame] | 86 | LOCAL_SDK_VERSION := 14 | 
| Adam Powell | bc889e3 | 2011-06-13 17:56:50 -0700 | [diff] [blame] | 87 | LOCAL_SRC_FILES := $(call all-java-files-under, ics) | 
| Kirill Grouchnikov | 0f6052f | 2016-05-04 15:30:25 -0400 | [diff] [blame] | 88 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 89 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Svetoslav Ganov | c64858f | 2012-01-30 15:13:34 -0800 | [diff] [blame] | 90 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 91 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 92 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 93 |  | 
| Svetoslav Ganov | c64858f | 2012-01-30 15:13:34 -0800 | [diff] [blame] | 94 | # ----------------------------------------------------------------------- | 
 | 95 |  | 
| Svetoslav Ganov | 956b013 | 2012-01-31 11:29:47 -0800 | [diff] [blame] | 96 | # A helper sub-library that makes direct use of JellyBean APIs. | 
 | 97 | include $(CLEAR_VARS) | 
 | 98 | LOCAL_MODULE := android-support-v4-jellybean | 
| Svetoslav Ganov | f3ed7c5 | 2012-05-13 13:29:30 -0700 | [diff] [blame] | 99 | LOCAL_SDK_VERSION := 16 | 
| Svetoslav Ganov | 956b013 | 2012-01-31 11:29:47 -0800 | [diff] [blame] | 100 | LOCAL_SRC_FILES := $(call all-java-files-under, jellybean) | 
| Kirill Grouchnikov | 0f6052f | 2016-05-04 15:30:25 -0400 | [diff] [blame] | 101 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 102 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Svetoslav Ganov | 0af001b | 2012-09-21 14:49:11 -0700 | [diff] [blame] | 103 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 104 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 105 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 106 |  | 
| Svetoslav Ganov | 0af001b | 2012-09-21 14:49:11 -0700 | [diff] [blame] | 107 | # ----------------------------------------------------------------------- | 
 | 108 |  | 
| Svetoslav | 0fc5bd7 | 2013-02-04 15:19:36 -0800 | [diff] [blame] | 109 | # A helper sub-library that makes direct use of JellyBean MR2 APIs. | 
 | 110 | include $(CLEAR_VARS) | 
 | 111 | LOCAL_MODULE := android-support-v4-jellybean-mr2 | 
| Mindy DelliCarpini | b7c7eb8 | 2013-09-18 15:52:11 +0000 | [diff] [blame] | 112 | LOCAL_SDK_VERSION := 18 | 
| Svetoslav | 0fc5bd7 | 2013-02-04 15:19:36 -0800 | [diff] [blame] | 113 | LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr2) | 
| Kirill Grouchnikov | 0f6052f | 2016-05-04 15:30:25 -0400 | [diff] [blame] | 114 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 115 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Svetoslav | 0fc5bd7 | 2013-02-04 15:19:36 -0800 | [diff] [blame] | 116 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 117 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 118 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 119 |  | 
| Svetoslav | 0fc5bd7 | 2013-02-04 15:19:36 -0800 | [diff] [blame] | 120 | # ----------------------------------------------------------------------- | 
 | 121 |  | 
| Mindy DelliCarpini | b7c7eb8 | 2013-09-18 15:52:11 +0000 | [diff] [blame] | 122 | # A helper sub-library that makes direct use of KitKat APIs. | 
 | 123 | include $(CLEAR_VARS) | 
 | 124 | LOCAL_MODULE := android-support-v4-kitkat | 
| Adam Powell | dd2c232 | 2013-10-09 15:12:20 -0700 | [diff] [blame] | 125 | LOCAL_SDK_VERSION := 19 | 
| Mindy DelliCarpini | b7c7eb8 | 2013-09-18 15:52:11 +0000 | [diff] [blame] | 126 | LOCAL_SRC_FILES := $(call all-java-files-under, kitkat) | 
 | 127 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean-mr2 | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 128 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Mindy DelliCarpini | b7c7eb8 | 2013-09-18 15:52:11 +0000 | [diff] [blame] | 129 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 130 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 131 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 132 |  | 
| Mindy DelliCarpini | b7c7eb8 | 2013-09-18 15:52:11 +0000 | [diff] [blame] | 133 | # ----------------------------------------------------------------------- | 
 | 134 |  | 
| RoboErik | ceb8bf5 | 2014-11-20 16:37:23 -0800 | [diff] [blame] | 135 | # A helper sub-library that makes direct use of V20 APIs. | 
| Griff Hazen | b56de0d | 2014-02-13 08:55:28 -0800 | [diff] [blame] | 136 | include $(CLEAR_VARS) | 
 | 137 | LOCAL_MODULE := android-support-v4-api20 | 
| Griff Hazen | 43c5718 | 2014-07-24 09:13:39 -0700 | [diff] [blame] | 138 | LOCAL_SDK_VERSION := 20 | 
| Griff Hazen | b56de0d | 2014-02-13 08:55:28 -0800 | [diff] [blame] | 139 | LOCAL_SRC_FILES := $(call all-java-files-under, api20) | 
 | 140 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-kitkat | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 141 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Griff Hazen | b56de0d | 2014-02-13 08:55:28 -0800 | [diff] [blame] | 142 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 143 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 144 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 145 |  | 
| Griff Hazen | b56de0d | 2014-02-13 08:55:28 -0800 | [diff] [blame] | 146 | # ----------------------------------------------------------------------- | 
 | 147 |  | 
| RoboErik | ceb8bf5 | 2014-11-20 16:37:23 -0800 | [diff] [blame] | 148 | # A helper sub-library that makes direct use of Lollipop APIs. | 
| Alan Viverette | 479dd28 | 2014-05-20 13:36:51 -0700 | [diff] [blame] | 149 | include $(CLEAR_VARS) | 
 | 150 | LOCAL_MODULE := android-support-v4-api21 | 
| Griff Hazen | fcec128 | 2014-11-18 12:35:04 -0800 | [diff] [blame] | 151 | LOCAL_SDK_VERSION := 21 | 
| Sungsoo Lim | f80997e | 2015-12-28 16:00:30 +0900 | [diff] [blame] | 152 | LOCAL_SRC_FILES := $(call all-java-files-under, api21) | 
| Alan Viverette | 479dd28 | 2014-05-20 13:36:51 -0700 | [diff] [blame] | 153 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-api20 | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 154 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Alan Viverette | 479dd28 | 2014-05-20 13:36:51 -0700 | [diff] [blame] | 155 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 156 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 157 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 158 |  | 
| Alan Viverette | 479dd28 | 2014-05-20 13:36:51 -0700 | [diff] [blame] | 159 | # ----------------------------------------------------------------------- | 
 | 160 |  | 
| RoboErik | ceb8bf5 | 2014-11-20 16:37:23 -0800 | [diff] [blame] | 161 | # A helper sub-library that makes direct use of V22 APIs. | 
 | 162 | include $(CLEAR_VARS) | 
 | 163 | LOCAL_MODULE := android-support-v4-api22 | 
| Chris Banes | c12dc3d | 2016-01-22 11:11:47 +0000 | [diff] [blame] | 164 | LOCAL_SDK_VERSION := 22 | 
| RoboErik | ceb8bf5 | 2014-11-20 16:37:23 -0800 | [diff] [blame] | 165 | LOCAL_SRC_FILES := $(call all-java-files-under, api22) | 
 | 166 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-api21 | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 167 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| RoboErik | ceb8bf5 | 2014-11-20 16:37:23 -0800 | [diff] [blame] | 168 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 169 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 170 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 171 |  | 
| RoboErik | ceb8bf5 | 2014-11-20 16:37:23 -0800 | [diff] [blame] | 172 | # ----------------------------------------------------------------------- | 
 | 173 |  | 
| Chris Banes | 44918a9 | 2015-01-08 11:55:55 +0000 | [diff] [blame] | 174 | # A helper sub-library that makes direct use of V23 APIs. | 
 | 175 | include $(CLEAR_VARS) | 
 | 176 | LOCAL_MODULE := android-support-v4-api23 | 
| Chris Banes | c12dc3d | 2016-01-22 11:11:47 +0000 | [diff] [blame] | 177 | LOCAL_SDK_VERSION := 23 | 
| Chris Banes | 44918a9 | 2015-01-08 11:55:55 +0000 | [diff] [blame] | 178 | LOCAL_SRC_FILES := $(call all-java-files-under, api23) | 
 | 179 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-api22 | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 180 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Chris Banes | 44918a9 | 2015-01-08 11:55:55 +0000 | [diff] [blame] | 181 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 182 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 183 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 184 |  | 
| Chris Banes | 44918a9 | 2015-01-08 11:55:55 +0000 | [diff] [blame] | 185 | # ----------------------------------------------------------------------- | 
 | 186 |  | 
| Chris Banes | 0eb5e0e | 2016-02-03 12:30:07 +0000 | [diff] [blame] | 187 | # A helper sub-library that makes direct use of V24 APIs. | 
 | 188 | include $(CLEAR_VARS) | 
 | 189 | LOCAL_MODULE := android-support-v4-api24 | 
 | 190 | LOCAL_SDK_VERSION := $(SUPPORT_CURRENT_SDK_VERSION) | 
 | 191 | LOCAL_SRC_FILES := $(call all-java-files-under, api24) | 
 | 192 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-api23 | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 193 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Chris Banes | 0eb5e0e | 2016-02-03 12:30:07 +0000 | [diff] [blame] | 194 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
 | 195 |  | 
 | 196 | support_module_src_files += $(LOCAL_SRC_FILES) | 
 | 197 |  | 
 | 198 | # ----------------------------------------------------------------------- | 
 | 199 |  | 
| Dianne Hackborn | 27aea04 | 2011-02-22 13:51:13 -0800 | [diff] [blame] | 200 | # Here is the final static library that apps can link against. | 
| Dianne Hackborn | cba2e2c | 2011-02-07 17:42:11 -0800 | [diff] [blame] | 201 | include $(CLEAR_VARS) | 
| Adam Lesinski | 6759b10 | 2016-02-24 19:57:25 -0800 | [diff] [blame] | 202 | LOCAL_USE_AAPT2 := true | 
| Kirill Grouchnikov | 3ac77bf | 2016-04-27 12:46:47 -0400 | [diff] [blame] | 203 | LOCAL_MODULE := android-support-core | 
| Dianne Hackborn | cba2e2c | 2011-02-07 17:42:11 -0800 | [diff] [blame] | 204 | LOCAL_SDK_VERSION := 4 | 
| RoboErik | e49860b | 2014-12-04 13:53:39 -0800 | [diff] [blame] | 205 | LOCAL_AIDL_INCLUDES := frameworks/support/v4/java | 
| Griff Hazen | ce16e42 | 2014-05-21 11:19:52 -0700 | [diff] [blame] | 206 | LOCAL_SRC_FILES := $(call all-java-files-under, java) \ | 
 | 207 |     $(call all-Iaidl-files-under, java) | 
| Adam Lesinski | 6759b10 | 2016-02-24 19:57:25 -0800 | [diff] [blame] | 208 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res | 
| Chris Banes | 0eb5e0e | 2016-02-03 12:30:07 +0000 | [diff] [blame] | 209 | LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4-api24 | 
| Kirill Grouchnikov | 3ac77bf | 2016-04-27 12:46:47 -0400 | [diff] [blame] | 210 | LOCAL_SHARED_ANDROID_LIBRARIES := \ | 
 | 211 |     android-support-compat \ | 
 | 212 |     android-support-annotations | 
| Adam Lesinski | 6759b10 | 2016-02-24 19:57:25 -0800 | [diff] [blame] | 213 | LOCAL_JAR_EXCLUDE_FILES := none | 
| Neil Fuller | e1cd5a1 | 2016-02-25 11:41:17 +0000 | [diff] [blame] | 214 | LOCAL_JAVA_LANGUAGE_VERSION := 1.7 | 
| Dianne Hackborn | cba2e2c | 2011-02-07 17:42:11 -0800 | [diff] [blame] | 215 | include $(BUILD_STATIC_JAVA_LIBRARY) | 
| Chris Banes | f62fcde | 2015-02-25 10:42:47 +0000 | [diff] [blame] | 216 |  | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 217 | support_module_src_files += $(LOCAL_SRC_FILES) | 
| Kirill Grouchnikov | 3ac77bf | 2016-04-27 12:46:47 -0400 | [diff] [blame] | 218 | support_module_src_files += $(call all-java-files-under, ../compat/java) | 
 | 219 | support_module_src_files += $(call all-java-files-under, ../compat/donut) | 
 | 220 | support_module_src_files += $(call all-java-files-under, ../compat/honeycomb_mr2) | 
 | 221 | support_module_src_files += $(call all-java-files-under, ../compat/ics) | 
| Chris Banes | 95ad49b | 2015-10-19 11:02:33 +0100 | [diff] [blame] | 222 | support_module_aidl_includes := $(LOCAL_AIDL_INCLUDES) | 
 | 223 |  | 
| Chris Banes | f62fcde | 2015-02-25 10:42:47 +0000 | [diff] [blame] | 224 | # API Check | 
 | 225 | # --------------------------------------------- | 
 | 226 | support_module := $(LOCAL_MODULE) | 
 | 227 | support_module_api_dir := $(LOCAL_PATH)/api | 
| Kirill Grouchnikov | 3ac77bf | 2016-04-27 12:46:47 -0400 | [diff] [blame] | 228 | support_module_java_libraries := $(LOCAL_JAVA_LIBRARIES) | 
| Chris Banes | 6396405 | 2015-04-30 10:37:19 +0100 | [diff] [blame] | 229 | support_module_java_packages := android.support.v4.* | 
| Chris Banes | f62fcde | 2015-02-25 10:42:47 +0000 | [diff] [blame] | 230 | include $(SUPPORT_API_CHECK) |