Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 61b5285

Browse files
committed
build: use vendored openpgp-ktx
Signed-off-by: Harsh Shandilya <[email protected]>
1 parent 7b25bf8 commit 61b5285

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ android {
4343

4444
dependencies {
4545
compileOnly(Dependencies.AndroidX.annotation)
46+
implementation(project(":autofill-parser"))
47+
implementation(project(":openpgp-ktx"))
4648
implementation(Dependencies.AndroidX.activity_ktx)
4749
implementation(Dependencies.AndroidX.appcompat)
4850
implementation(Dependencies.AndroidX.autofill)
@@ -64,8 +66,6 @@ dependencies {
6466
implementation(Dependencies.Kotlin.Coroutines.android)
6567
implementation(Dependencies.Kotlin.Coroutines.core)
6668

67-
implementation(project(Dependencies.FirstParty.autofill_parser))
68-
implementation(Dependencies.FirstParty.openpgp_ktx)
6969
implementation(Dependencies.FirstParty.zxing_android_embedded)
7070

7171
implementation(Dependencies.ThirdParty.commons_codec)

buildSrc/src/main/java/BaseProjectConfig.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ internal fun Project.configureForAllProjects() {
3939
repositories {
4040
google()
4141
jcenter()
42-
maven { setUrl("https://jitpack.io") }
4342
}
4443
tasks.withType<KotlinCompile> {
4544
kotlinOptions {

buildSrc/src/main/java/Dependencies.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@ object Dependencies {
4141

4242
object FirstParty {
4343

44-
const val openpgp_ktx = "com.github.android-password-store:openpgp-ktx:2.2.0"
4544
const val zxing_android_embedded = "com.github.android-password-store:zxing-android-embedded:4.1.0-aps"
46-
const val autofill_parser = ":autofill-parser"
4745
}
4846

4947
object ThirdParty {

0 commit comments

Comments
 (0)