Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.Deletescape-Media:Lawnchair:v14.0.0-beta3'
}
dependencies {
implementation("com.github.Deletescape-Media:Lawnchair:v14.0.0-beta3")
}
<dependency>
<groupId>com.github.Deletescape-Media</groupId>
<artifactId>Lawnchair</artifactId>
<version>v14.0.0-beta3</version>
</dependency>
libraryDependencies += "com.github.Deletescape-Media" % "Lawnchair" % "v14.0.0-beta3"
:dependencies [[com.github.Deletescape-Media/Lawnchair "v14.0.0-beta3"]]
Lawnchair is a free, open-source home app for Android. Taking Launcher3—Android’s default home app—as a starting point, it ports Pixel Launcher features and introduces rich customization options.
This branch houses the codebase of Lawnchair 15, which is currently in development and is based on Launcher3 from Android 15. For Lawnchair 9 to 14, see the branches with the 9-
to 14-
prefixes, respectively.
Lawnchair on Play Store will install as a different app from other sources. Some features may be restricted to comply with Google Play's publishing rules.
Interested in keeping yourself up-to-date with every Lawnchair development? Try our development build!
These builds offer the latest features and bug fixes at a cost of being slower and introducing new bugs. Ensure that you make backups before installing.
Download: Obtainium • GitHub • nightly.link
Verify the integrity of your Lawnchair download using these SHA-256 hashes:
| Source | SHA-256 Hash |
| ----------- | ------------------------------------------------------------------------------------------------- |
| Anywhere | 74:7C:36:45:B3:57:25:8B:2E:23:E8:51:E5:3C:96:74:7F:E0:AD:D0:07:E5:BA:2C:D9:7E:8C:85:57:2E:4D:C5
|
| Google Play | 47:AC:92:63:1C:60:35:13:CC:8D:26:DD:9C:FF:E0:71:9A:8B:36:55:44:DC:CE:C2:09:58:24:EC:25:61:20:A7
|
Please visit the Lawnchair Contributing Guidelines for information and tips on contributing to Lawnchair.
You can view all our links in the Lawnchair Wiki.
<!-- Download link -->