mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-17 17:48:20 +00:00
There has been a link-type check warning on libSharedSystemUI the prebuilt lib is built without SDK but the app using it (Launcher3QuickStep) is built with SDK. Since this effectively prevents the app from being unbundled, such warning will turn into errors soon. However, the lib isn't ready to be built with SDK yet. So, in order to suppress the link-type check warning until then, the prebuilt lib is added with LOCAL_SDK_VERSION := current. Bug: 69899800 Bug: 73327733 Test: m -j Launcher3QuickStep is successful and does not show any link-type check warning Change-Id: Ifd74bfee8c608e099737bd46569b05f007c1e86b
179 lines
5.0 KiB
Makefile
179 lines
5.0 KiB
Makefile
#
|
|
# Copyright (C) 2013 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
#
|
|
# Prebuilt Java Libraries
|
|
#
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libSharedSystemUI
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_CLASS := JAVA_LIBRARIES
|
|
LOCAL_SRC_FILES := quickstep/libs/sysui_shared.jar
|
|
LOCAL_UNINSTALLABLE_MODULE := true
|
|
LOCAL_SDK_VERSION := current
|
|
include $(BUILD_PREBUILT)
|
|
|
|
#
|
|
# Build rule for Launcher3 app.
|
|
#
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
android-support-v4 \
|
|
android-support-v7-recyclerview \
|
|
android-support-dynamic-animation
|
|
|
|
LOCAL_SRC_FILES := \
|
|
$(call all-java-files-under, src) \
|
|
$(call all-java-files-under, src_ui_overrides) \
|
|
$(call all-java-files-under, src_flags) \
|
|
$(call all-proto-files-under, protos) \
|
|
$(call all-proto-files-under, proto_overrides)
|
|
|
|
LOCAL_RESOURCE_DIR := \
|
|
$(LOCAL_PATH)/res \
|
|
prebuilts/sdk/current/support/v7/recyclerview/res \
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
|
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/ --proto_path=$(LOCAL_PATH)/proto_overrides/
|
|
LOCAL_PROTO_JAVA_OUTPUT_PARAMS := enum_style=java
|
|
|
|
LOCAL_AAPT_FLAGS := \
|
|
--auto-add-overlay \
|
|
--extra-packages android.support.v7.recyclerview \
|
|
|
|
LOCAL_SDK_VERSION := current
|
|
LOCAL_MIN_SDK_VERSION := 21
|
|
LOCAL_PACKAGE_NAME := Launcher3
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2
|
|
|
|
LOCAL_FULL_LIBS_MANIFEST_FILES := $(LOCAL_PATH)/AndroidManifest-common.xml
|
|
|
|
LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.*
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
#
|
|
# Build rule for Launcher3 Go app for Android Go devices.
|
|
#
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
android-support-v4 \
|
|
android-support-v7-recyclerview \
|
|
android-support-dynamic-animation
|
|
|
|
LOCAL_SRC_FILES := \
|
|
$(call all-java-files-under, src) \
|
|
$(call all-java-files-under, src_ui_overrides) \
|
|
$(call all-java-files-under, go/src_flags) \
|
|
$(call all-proto-files-under, protos) \
|
|
$(call all-proto-files-under, proto_overrides)
|
|
|
|
LOCAL_RESOURCE_DIR := \
|
|
$(LOCAL_PATH)/go/res \
|
|
$(LOCAL_PATH)/res \
|
|
prebuilts/sdk/current/support/v7/recyclerview/res \
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
|
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/ --proto_path=$(LOCAL_PATH)/proto_overrides/
|
|
LOCAL_PROTO_JAVA_OUTPUT_PARAMS := enum_style=java
|
|
|
|
LOCAL_AAPT_FLAGS := \
|
|
--auto-add-overlay \
|
|
--extra-packages android.support.v7.recyclerview \
|
|
|
|
LOCAL_SDK_VERSION := current
|
|
LOCAL_MIN_SDK_VERSION := 21
|
|
LOCAL_PACKAGE_NAME := Launcher3Go
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3
|
|
|
|
LOCAL_FULL_LIBS_MANIFEST_FILES := \
|
|
$(LOCAL_PATH)/AndroidManifest.xml \
|
|
$(LOCAL_PATH)/AndroidManifest-common.xml
|
|
|
|
LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.*
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
#
|
|
# Build rule for Quickstep app.
|
|
#
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
android-support-v4 \
|
|
android-support-v7-recyclerview \
|
|
android-support-dynamic-animation \
|
|
libSharedSystemUI
|
|
|
|
LOCAL_SRC_FILES := \
|
|
$(call all-java-files-under, src) \
|
|
$(call all-java-files-under, quickstep/src) \
|
|
$(call all-java-files-under, src_flags) \
|
|
$(call all-proto-files-under, protos) \
|
|
$(call all-proto-files-under, proto_overrides)
|
|
|
|
LOCAL_RESOURCE_DIR := \
|
|
$(LOCAL_PATH)/quickstep/res \
|
|
$(LOCAL_PATH)/res \
|
|
prebuilts/sdk/current/support/v7/recyclerview/res \
|
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
|
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
|
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/ --proto_path=$(LOCAL_PATH)/proto_overrides/
|
|
LOCAL_PROTO_JAVA_OUTPUT_PARAMS := enum_style=java
|
|
|
|
LOCAL_AAPT_FLAGS := \
|
|
--auto-add-overlay \
|
|
--extra-packages android.support.v7.recyclerview \
|
|
|
|
LOCAL_SDK_VERSION := system_current
|
|
LOCAL_MIN_SDK_VERSION := 26
|
|
LOCAL_PACKAGE_NAME := Launcher3QuickStep
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3
|
|
|
|
LOCAL_FULL_LIBS_MANIFEST_FILES := \
|
|
$(LOCAL_PATH)/AndroidManifest.xml \
|
|
$(LOCAL_PATH)/AndroidManifest-common.xml
|
|
|
|
LOCAL_MANIFEST_FILE := quickstep/AndroidManifest.xml
|
|
LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.*
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
|
|
|
|
|
|
# ==================================================
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|