This greatly reduces the amount of scrolling needed to switch between the overview-view and the launch-view. When launching the next activity the launch view is dismissed and the user return to the overview-view if they press back. Test: Manual Change-Id: I051ba98b29d666cf56753feebfaa87d2e181a3ab
29 lines
679 B
Makefile
29 lines
679 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := samples tests
|
|
|
|
# Only compile source java files in this apk.
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
|
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := \
|
|
androidx.design_design \
|
|
androidx.appcompat_appcompat \
|
|
androidx.recyclerview_recyclerview \
|
|
androidx.lifecycle_lifecycle-livedata \
|
|
androidx.lifecycle_lifecycle-viewmodel
|
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_PACKAGE_NAME := IntentPlayground
|
|
|
|
LOCAL_SDK_VERSION := current
|
|
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
# Use the following include to make our test apk.
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|