1 # Copyright (C) 2016 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 # Build the resources using the latest applicable SDK version. 18 # We do this here because the final static library must be compiled with an older 19 # SDK version than the resources. The resources library and the R class that it 20 # contains will not be linked into the final static library. 21 include $(CLEAR_VARS) 22 LOCAL_MODULE := android-support-transition-res 23 LOCAL_SDK_VERSION := $(SUPPORT_CURRENT_SDK_VERSION) 24 LOCAL_SRC_FILES := $(call all-java-files-under, dummy) 25 LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 26 LOCAL_JAR_EXCLUDE_FILES := none 27 LOCAL_JAVA_LANGUAGE_VERSION := 1.7 28 include $(BUILD_STATIC_JAVA_LIBRARY) 29 30 # A helper sub-library to resolve cyclic dependencies between Transition and platform dependent 31 # implementations 32 include $(CLEAR_VARS) 33 LOCAL_MODULE := android-support-transition-base 34 LOCAL_SDK_VERSION := 14 35 LOCAL_SRC_FILES := $(call all-java-files-under, base) 36 LOCAL_JAVA_LANGUAGE_VERSION := 1.7 37 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 38 android-support-v4 39 include $(BUILD_STATIC_JAVA_LIBRARY) 40 41 # A helper sub-library that makes direct use of Ice Cream Sandwich APIs 42 include $(CLEAR_VARS) 43 LOCAL_MODULE := android-support-transition-ics 44 LOCAL_SDK_VERSION := 14 45 LOCAL_SRC_FILES := $(call all-java-files-under, ics) 46 LOCAL_STATIC_JAVA_LIBRARIES := android-support-transition-base 47 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 48 android-support-v4 49 include $(BUILD_STATIC_JAVA_LIBRARY) 50 51 # A helper sub-library that makes direct use of KitKat APIs 52 include $(CLEAR_VARS) 53 LOCAL_MODULE := android-support-transition-kitkat 54 LOCAL_SDK_VERSION := 19 55 LOCAL_SRC_FILES := $(call all-java-files-under, kitkat) 56 LOCAL_STATIC_JAVA_LIBRARIES := android-support-transition-ics 57 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 58 android-support-v4 59 include $(BUILD_STATIC_JAVA_LIBRARY) 60 61 # A helper sub-library that makes direct use of Lollipop APIs 62 include $(CLEAR_VARS) 63 LOCAL_MODULE := android-support-transition-api21 64 LOCAL_SDK_VERSION := 21 65 LOCAL_SRC_FILES := $(call all-java-files-under, api21) 66 LOCAL_STATIC_JAVA_LIBRARIES := android-support-transition-kitkat 67 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 68 android-support-v4 69 include $(BUILD_STATIC_JAVA_LIBRARY) 70 71 # A helper sub-library that makes direct use of Marshmallow APIs 72 include $(CLEAR_VARS) 73 LOCAL_MODULE := android-support-transition-api23 74 LOCAL_SDK_VERSION := 23 75 LOCAL_SRC_FILES := $(call all-java-files-under, api23) 76 LOCAL_STATIC_JAVA_LIBRARIES := android-support-transition-api21 77 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 78 android-support-v4 79 include $(BUILD_STATIC_JAVA_LIBRARY) 80 81 # Here is the final static library that apps can link against. 82 # The R class is automatically excluded from the generated library. 83 # Applications that use this library must specify LOCAL_RESOURCE_DIR 84 # in their makefiles to include the resources in their package. 85 include $(CLEAR_VARS) 86 LOCAL_MODULE := android-support-transition 87 LOCAL_SDK_VERSION := $(SUPPORT_CURRENT_SDK_VERSION) 88 LOCAL_SRC_FILES := $(call all-java-files-under, src) 89 LOCAL_STATIC_JAVA_LIBRARIES := android-support-transition-api23 90 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 91 android-support-v4 92 include $(BUILD_STATIC_JAVA_LIBRARY) 93