mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 15:26:58 +00:00
Initial support quickstep, Android versions from Q to U, ensuring a smooth and efficient user experience. Enjoy effortless navigation and swift app switching on your Android device with QuickSwitch's compatibility across the Q, R, S, T, and U. Co-authored-by: Goooler <wangzongler@gmail.com> Co-authored-by: 无言 <57122860+liu-wanshun@users.noreply.github.com>
20 lines
270 B
Groovy
20 lines
270 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
android {
|
|
namespace "app.lawnchair.compatlib"
|
|
|
|
buildFeatures {
|
|
aidl true
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
aidl.srcDirs = ['src/main/java']
|
|
}
|
|
}
|
|
}
|
|
|
|
addFrameworkJar('framework-14.jar')
|