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"]]
<picture> <!-- Avoid image being clickable with slight workaround --> <!-- ❤️ Credit to simonppt for the current mockup on Unsplash https://unsplash.com/photos/a-white-flower-with-green-leaves-on-a-white-background-ojBNiaeykwc --> <source media="(prefers-color-scheme: dark)" srcset="docs/assets/device-frame.webp" width="250px"> <img alt="A device running Lawnchair Launcher with green flower wallpaper" src="docs/assets/device-frame.webp" width="250px"> </picture>[!WARNING] This branch contains major changes from the rebase of Launcher3, including changes that can cause Lawnchair to crash or break.
For regular users, we recommend staying on Lawnchair 15 Beta 3.
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 16, which is currently in development and is based on Launcher3 from Android 16. For Lawnchair 9 to 15, see the branches with the 9- to 15- prefixes, respectively.
Lawnchair on Play Store will install as a different app from other sources. Features may be restricted to comply with Google Play's publishing rules.
You can also verify your installation to see if you have installed an official build.
Interested in keeping yourself up-to-date with every Lawnchair development? Try our development builds!
These builds offer the latest features and bug fixes at a cost of performance and additional issues. Make backups before installing.
Download: Obtainium • GitHub • nightly.link
Visit the Lawnchair contributing guidelines for information and tips on contributing to Lawnchair.
If you love what we do, consider supporting us on Open Collective! Your contributions help keep Lawnchair independent and enable us to develop faster.
A huge thank you to our Core Backers ($5+): (These backers directly fund our Project Velocity Fund)
Become a supporter to help us cover our operational costs, or become a Core Backer to be featured here!
View all our links in the Lawnchair Wiki.
<!-- Download link -->