mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-02-22 18:31:50 +01:00
Use pgpainless hardwareDecryption branch for testing
This commit is contained in:
parent
98b7197aa5
commit
a244a0f3b8
|
|
@ -11,6 +11,9 @@ org.gradle.vfs.watch=true
|
|||
|
||||
# Enable experimental configuration caching
|
||||
org.gradle.unsafe.configuration-cache=true
|
||||
# FIXME Turn cache errors into warnings; can be removed when no
|
||||
# longer building dependencies from source
|
||||
org.gradle.unsafe.configuration-cache-problems=warn
|
||||
|
||||
# Enable Kotlin incremental compilation
|
||||
kotlin.incremental=true
|
||||
|
|
|
|||
|
|
@ -165,6 +165,16 @@ dependencyResolutionManagement {
|
|||
|
||||
gitRepositories {
|
||||
checkoutsDirectory.set(rootProject.projectDir.resolve("build/checkouts"))
|
||||
include("pgpainless") {
|
||||
uri.set("https://github.com/pgpainless/pgpainless.git")
|
||||
branch.set("hardwareDecryption")
|
||||
includeBuild {
|
||||
dependencySubstitution {
|
||||
substitute(module("org.pgpainless:pgpainless-core"))
|
||||
.using(project(":pgpainless-core"))
|
||||
}
|
||||
}
|
||||
}
|
||||
include("hwsecurity") {
|
||||
uri.set("https://github.com/tadfisher/hwsecurity.git")
|
||||
branch.set("pendingintent-mutability")
|
||||
|
|
|
|||
Loading…
Reference in a new issue