mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-07 16:09:38 +02:00
Re-add OpenPgpAppPreference
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
parent
b9e2d6d498
commit
67160f50d1
|
@ -10,6 +10,10 @@ plugins {
|
||||||
id 'kotlin-android-extensions'
|
id 'kotlin-android-extensions'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
maven { url 'https://jitpack.io' }
|
||||||
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId 'com.zeapo.pwdstore'
|
applicationId 'com.zeapo.pwdstore'
|
||||||
|
@ -76,7 +80,7 @@ dependencies {
|
||||||
implementation 'com.google.android.material:material:' + versions.material
|
implementation 'com.google.android.material:material:' + versions.material
|
||||||
implementation 'androidx.annotation:annotation:' + versions.annotation
|
implementation 'androidx.annotation:annotation:' + versions.annotation
|
||||||
implementation 'androidx.biometric:biometric:' + versions.biometric
|
implementation 'androidx.biometric:biometric:' + versions.biometric
|
||||||
implementation 'org.sufficientlysecure:openpgp-api:' + versions.openpgp
|
implementation 'com.github.msfjarvis:openpgp-api:' + versions.openpgp
|
||||||
implementation('org.eclipse.jgit:org.eclipse.jgit:' + versions.jgit) {
|
implementation('org.eclipse.jgit:org.eclipse.jgit:' + versions.jgit) {
|
||||||
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
|
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,11 +40,9 @@
|
||||||
</androidx.preference.PreferenceCategory>
|
</androidx.preference.PreferenceCategory>
|
||||||
|
|
||||||
<androidx.preference.PreferenceCategory android:title="@string/pref_crypto_title">
|
<androidx.preference.PreferenceCategory android:title="@string/pref_crypto_title">
|
||||||
<!-- TODO(msf): Update the damn library and re-enable this
|
<org.openintents.openpgp.util.OpenPgpAppPreference2
|
||||||
<org.openintents.openpgp.util.OpenPgpAppPreference
|
|
||||||
android:key="openpgp_provider_list"
|
android:key="openpgp_provider_list"
|
||||||
android:title="@string/pref_provider_title" />
|
android:title="@string/pref_provider_title" />
|
||||||
-->
|
|
||||||
<androidx.preference.Preference
|
<androidx.preference.Preference
|
||||||
android:key="openpgp_key_id_pref"
|
android:key="openpgp_key_id_pref"
|
||||||
android:title="@string/pref_key_title" />
|
android:title="@string/pref_key_title" />
|
||||||
|
|
|
@ -35,7 +35,7 @@ ext {
|
||||||
commons_codec: '1.13',
|
commons_codec: '1.13',
|
||||||
jgit: '3.7.1.201504261725-r',
|
jgit: '3.7.1.201504261725-r',
|
||||||
jsch: '0.1.55',
|
jsch: '0.1.55',
|
||||||
openpgp: '12.0',
|
openpgp: 'v14',
|
||||||
sshauth: '1.0'
|
sshauth: '1.0'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue