Skip to content

Commit cf7df34

Browse files
committed
rename folder from lib_systemui to systemui
Signed-off-by: saulhdev <saul_henriquez@hotmail.com>
1 parent bd8f0a2 commit cf7df34

File tree

108 files changed

+9270
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+9270
-0
lines changed

hidden-api/build.gradle

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
plugins {
2+
id 'com.android.library'
3+
}
4+
5+
android {
6+
namespace 'com.neoapps.hiddenapi'
7+
compileSdk 35
8+
buildFeatures {
9+
aidl true
10+
}
11+
12+
sourceSets {
13+
main {
14+
java.srcDirs = ['src']
15+
aidl.srcDirs = ['src']
16+
res.srcDirs = ['res']
17+
}
18+
}
19+
20+
gradle.projectsEvaluated {
21+
def frameworkJar = fileTree(dir: 'libs', include: ['framework-15.jar']).files.singleFile
22+
gradle.projectsEvaluated {
23+
tasks.withType(JavaCompile).configureEach {
24+
classpath = files(frameworkJar, classpath)
25+
}
26+
tasks.withType(KotlinCompile).configureEach {
27+
libraries.from(files(frameworkJar))
28+
}
29+
}
30+
31+
dependencies {
32+
implementation fileTree(dir: 'libs', include: ['framework-15.jar'])
33+
}
34+
}
35+
}
36+
37+
dependencies {
38+
annotationProcessor 'dev.rikka.tools.refine:annotation-processor:4.4.0'
39+
compileOnly 'dev.rikka.tools.refine:annotation:4.4.0'
40+
compileOnly fileTree(dir: 'libs', include: ['framework-15.jar'])
41+
}

libs/QuickstepResLib.jar

23.3 MB
Binary file not shown.

libs/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Lawnchair Prebuilt JARs
2+
3+
Launcher3 has some dependencies on internal AOSP modules.
4+
To build Lawnchair, you have to build AOSP and obtain these JARs.
5+
6+
| File | Path |
7+
|----------------------------|----------------------------------------------------------------------------------------------------------------------------------|
8+
| framework-14.jar | ./soong/.intermediates/frameworks/base/framework/android_common/turbine-combined/framework.jar |
9+
| framework-statsd.jar | ./soong/.intermediates/packages/modules/StatsD/framework/framework-statsd/android_common_apex30/javac/framework-statsd.jar |
10+
| SystemUI-statsd-14.jar | ./soong/.intermediates/frameworks/base/packages/SystemUI/shared/SystemUI-statsd/android_common/javac/SystemUI-statsd.jar |
11+
| WindowManager-Shell-14.jar | ./soong/.intermediates/frameworks/base/libs/WindowManager/Shell/WindowManager-Shell/android_common/javac/WindowManager-Shell.jar |

0 commit comments

Comments
 (0)