mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-17 09:38:19 +00:00
* Update buildTypes
* Replace android.jar with framework-13.jar
* io.github.fornewid:material-motion-compose-core:1.0.7
* Update submodule
* Move spotless extension
* Remove extra package attrs
* Use Kapt in plugins block
* Remove extra line
* Reuse protobuf config
* Use core-ktx
* Replace android.jar with framework-13.jar
* Cleanup
* Optimize Dagger deps
* Try to migrate to Hilt KSP compiler
* Revert "Try to migrate to Hilt KSP compiler"
This reverts commit 7a11610216.
* Remove extra core-ktx
* Add compileOnlyCommonJars
* Move addFrameworkJar out of android extension
* Cleanup
* Use com.google.dagger:hilt-compiler
* Update submodule
27 lines
526 B
Groovy
27 lines
526 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
|
|
android {
|
|
namespace "com.android.systemui.animation"
|
|
buildFeatures {
|
|
aidl true
|
|
}
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs = ['src']
|
|
aidl.srcDirs = ['src']
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
res.srcDirs = ['res']
|
|
}
|
|
}
|
|
}
|
|
|
|
addFrameworkJar('framework-13.jar')
|
|
compileOnlyCommonJars()
|
|
|
|
dependencies {
|
|
implementation "androidx.core:core-animation:1.0.0-rc01"
|
|
}
|