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.zeapo:Android-Password-Store:1.13.4'
}
dependencies {
implementation("com.github.zeapo:Android-Password-Store:1.13.4")
}
<dependency>
<groupId>com.github.zeapo</groupId>
<artifactId>Android-Password-Store</artifactId>
<version>1.13.4</version>
</dependency>
libraryDependencies += "com.github.zeapo" % "Android-Password-Store" % "1.13.4"
:dependencies [[com.github.zeapo/Android-Password-Store "1.13.4"]]
[!WARNING]
Android Password Store is no longer actively developed. You can find the announcement here.
See https://docs.passwordstore.app/docs/users/release-channels/
We're in the process of rewriting our documentation from scratch, and the work-in-progress state can be seen here. See the wiki for the old documentation.
Want to contribute? See if you can find an issue you are interested in, then send a PR. Consult the contribution docs
Interested in helping to translate Password Store? Contribute here!
Wanna test development builds to find bugs and offer feedback? Read the release channels documentation to get access!
Ways to get in touch:
The project accepts financial contributions through the following platforms
<sub>Google Play and the Google Play logo are trademarks of Google LLC.</sub>