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_JAVA_LANGUAGE_VERSION := 1.7 47 LOCAL_STATIC_JAVA_LIBRARIES := android-support-transition-base 48 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 49 android-support-v4 50 include $(BUILD_STATIC_JAVA_LIBRARY) 51 52 # A helper sub-library that makes direct use of KitKat APIs 53 include $(CLEAR_VARS) 54 LOCAL_MODULE := android-support-transition-kitkat 55 LOCAL_SDK_VERSION := 19 56 LOCAL_SRC_FILES := $(call all-java-files-under, kitkat) 57 LOCAL_JAVA_LANGUAGE_VERSION := 1.7 58 LOCAL_STATIC_JAVA_LIBRARIES := android-support-transition-ics 59 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 60 android-support-v4 61 include $(BUILD_STATIC_JAVA_LIBRARY) 62 63 # A helper sub-library that makes direct use of Lollipop APIs 64 include $(CLEAR_VARS) 65 LOCAL_MODULE := android-support-transition-api21 66 LOCAL_SDK_VERSION := 21 67 LOCAL_SRC_FILES := $(call all-java-files-under, api21) 68 LOCAL_JAVA_LANGUAGE_VERSION := 1.7 69 LOCAL_STATIC_JAVA_LIBRARIES := android-support-transition-kitkat 70 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 71 android-support-v4 72 include $(BUILD_STATIC_JAVA_LIBRARY) 73 74 # A helper sub-library that makes direct use of Marshmallow APIs 75 include $(CLEAR_VARS) 76 LOCAL_MODULE := android-support-transition-api23 77 LOCAL_SDK_VERSION := 23 78 LOCAL_SRC_FILES := $(call all-java-files-under, api23) 79 LOCAL_JAVA_LANGUAGE_VERSION := 1.7 80 LOCAL_STATIC_JAVA_LIBRARIES := android-support-transition-api21 81 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 82 android-support-v4 83 include $(BUILD_STATIC_JAVA_LIBRARY) 84 85 # Here is the final static library that apps can link against. 86 # The R class is automatically excluded from the generated library. 87 # Applications that use this library must specify LOCAL_RESOURCE_DIR 88 # in their makefiles to include the resources in their package. 89 include $(CLEAR_VARS) 90 LOCAL_MODULE := android-support-transition 91 LOCAL_SDK_VERSION := $(SUPPORT_CURRENT_SDK_VERSION) 92 LOCAL_SRC_FILES := $(call all-java-files-under, src) 93 LOCAL_JAVA_LANGUAGE_VERSION := 1.7 94 LOCAL_STATIC_JAVA_LIBRARIES := android-support-transition-api23 95 LOCAL_JAVA_LIBRARIES := android-support-transition-res \ 96 android-support-v4 97 include $(BUILD_STATIC_JAVA_LIBRARY) 98