Initial commit (2.1-2616-ci-q-pre-alpha)

Signed-off-by: Park Ju Hyung <qkrwngud825@gmail.com>
This commit is contained in:
Park Ju Hyung
2020-02-27 05:19:59 +09:00
commit c918b9083c
10 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_RRO_THEME := QuickstepSwitcher
LOCAL_PRODUCT_MODULE := true
LOCAL_SRC_FILES := $(call all-subdir-java-files)
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
LOCAL_PACKAGE_NAME := QuickstepSwitcherOverlay
LOCAL_SDK_VERSION := current
include $(BUILD_RRO_PACKAGE)

View File

@@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xyz.paphonb.quickstepswitcher.overlay"
android:versionCode="1"
android:versionName="1.0">
<overlay android:isStatic="true" android:priority="999" android:targetPackage="android"/>
<application android:label="QuickSwitch Overlay"/>
</manifest>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="config_swipe_up_gesture_setting_available">true</bool>
<bool name="config_custom_swipe_up_gesture_setting_available">true</bool>
</resources>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<public type="bool" name="config_swipe_up_gesture_setting_available" id="0x7f020000" />
<public type="bool" name="config_custom_swipe_up_gesture_setting_available" id="0x7f020001" />
<public type="string" name="config_recentsComponentName" id="0x7f030000" />
</resources>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="config_recentsComponentName">ch.deletescape.lawnchair.ci/com.android.quickstep.RecentsActivity</string>
</resources>