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 17 # A helper sub-library that makes direct use of Eclair APIs. 18 include $(CLEAR_VARS) 19 LOCAL_MODULE := android-support-v4-eclair 20 LOCAL_SDK_VERSION := 5 21 LOCAL_SRC_FILES := $(call all-java-files-under, eclair) 22 include $(BUILD_STATIC_JAVA_LIBRARY) 23 24 # ----------------------------------------------------------------------- 25 26 # A helper sub-library that makes direct use of Eclair MR1 APIs. 27 include $(CLEAR_VARS) 28 LOCAL_MODULE := android-support-v4-eclair-mr1 29 LOCAL_SDK_VERSION := 7 30 LOCAL_SRC_FILES := $(call all-java-files-under, eclair-mr1) 31 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-eclair 32 include $(BUILD_STATIC_JAVA_LIBRARY) 33 34 # ----------------------------------------------------------------------- 35 36 # A helper sub-library that makes direct use of Froyo APIs. 37 include $(CLEAR_VARS) 38 LOCAL_MODULE := android-support-v4-froyo 39 LOCAL_SDK_VERSION := 8 40 LOCAL_SRC_FILES := $(call all-java-files-under, froyo) 41 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-eclair-mr1 42 include $(BUILD_STATIC_JAVA_LIBRARY) 43 44 # ----------------------------------------------------------------------- 45 46 # A helper sub-library that makes direct use of Gingerbread APIs. 47 include $(CLEAR_VARS) 48 LOCAL_MODULE := android-support-v4-gingerbread 49 LOCAL_SDK_VERSION := 9 50 LOCAL_SRC_FILES := $(call all-java-files-under, gingerbread) 51 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-froyo 52 include $(BUILD_STATIC_JAVA_LIBRARY) 53 54 # ----------------------------------------------------------------------- 55 56 # A helper sub-library that makes direct use of Honeycomb APIs. 57 include $(CLEAR_VARS) 58 LOCAL_MODULE := android-support-v4-honeycomb 59 LOCAL_SDK_VERSION := 11 60 LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb) 61 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-gingerbread 62 include $(BUILD_STATIC_JAVA_LIBRARY) 63 64 # ----------------------------------------------------------------------- 65 66 # A helper sub-library that makes direct use of Honeycomb MR2 APIs. 67 include $(CLEAR_VARS) 68 LOCAL_MODULE := android-support-v4-honeycomb-mr2 69 LOCAL_SDK_VERSION := 13 70 LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr2) 71 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb 72 include $(BUILD_STATIC_JAVA_LIBRARY) 73 74 # ----------------------------------------------------------------------- 75 76 # A helper sub-library that makes direct use of Ice Cream Sandwich APIs. 77 include $(CLEAR_VARS) 78 LOCAL_MODULE := android-support-v4-ics 79 LOCAL_SDK_VERSION := 14 80 LOCAL_SRC_FILES := $(call all-java-files-under, ics) 81 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb-mr2 82 include $(BUILD_STATIC_JAVA_LIBRARY) 83 84 # ----------------------------------------------------------------------- 85 86 # A helper sub-library that makes direct use of Ice Cream Sandwich MR1 APIs. 87 include $(CLEAR_VARS) 88 LOCAL_MODULE := android-support-v4-ics-mr1 89 LOCAL_SDK_VERSION := 15 90 LOCAL_SRC_FILES := $(call all-java-files-under, ics-mr1) 91 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics 92 include $(BUILD_STATIC_JAVA_LIBRARY) 93 94 # ----------------------------------------------------------------------- 95 96 # A helper sub-library that makes direct use of JellyBean APIs. 97 include $(CLEAR_VARS) 98 LOCAL_MODULE := android-support-v4-jellybean 99 LOCAL_SDK_VERSION := 16 100 LOCAL_SRC_FILES := $(call all-java-files-under, jellybean) 101 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics-mr1 102 include $(BUILD_STATIC_JAVA_LIBRARY) 103 104 # ----------------------------------------------------------------------- 105 106 # A helper sub-library that makes direct use of JellyBean MR1 APIs. 107 include $(CLEAR_VARS) 108 LOCAL_MODULE := android-support-v4-jellybean-mr1 109 LOCAL_SDK_VERSION := 17 110 LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr1) 111 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean 112 include $(BUILD_STATIC_JAVA_LIBRARY) 113 114 # ----------------------------------------------------------------------- 115 116 # A helper sub-library that makes direct use of JellyBean MR2 APIs. 117 include $(CLEAR_VARS) 118 LOCAL_MODULE := android-support-v4-jellybean-mr2 119 LOCAL_SDK_VERSION := 18 120 LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr2) 121 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean-mr1 122 include $(BUILD_STATIC_JAVA_LIBRARY) 123 124 # ----------------------------------------------------------------------- 125 126 # A helper sub-library that makes direct use of KitKat APIs. 127 include $(CLEAR_VARS) 128 LOCAL_MODULE := android-support-v4-kitkat 129 LOCAL_SDK_VERSION := 19 130 LOCAL_SRC_FILES := $(call all-java-files-under, kitkat) 131 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean-mr2 132 include $(BUILD_STATIC_JAVA_LIBRARY) 133 134 # ----------------------------------------------------------------------- 135 136 # Here is the final static library that apps can link against. 137 include $(CLEAR_VARS) 138 LOCAL_MODULE := android-support-v4 139 LOCAL_SDK_VERSION := 4 140 LOCAL_SRC_FILES := $(call all-java-files-under, java) 141 LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4-kitkat 142 include $(BUILD_STATIC_JAVA_LIBRARY) 143