diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 6 | ||||
-rw-r--r-- | app/src/main/res/xml/preference.xml | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/app/build.gradle b/app/build.gradle index d49ffd43..4565a00d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,6 +10,10 @@ plugins { id 'kotlin-android-extensions' } +repositories { + maven { url 'https://jitpack.io' } +} + android { defaultConfig { applicationId 'com.zeapo.pwdstore' @@ -76,7 +80,7 @@ dependencies { implementation 'com.google.android.material:material:' + versions.material implementation 'androidx.annotation:annotation:' + versions.annotation 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) { exclude group: 'org.apache.httpcomponents', module: 'httpclient' } diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index 25026517..6ac317ad 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -40,11 +40,9 @@ </androidx.preference.PreferenceCategory> <androidx.preference.PreferenceCategory android:title="@string/pref_crypto_title"> - <!-- TODO(msf): Update the damn library and re-enable this - <org.openintents.openpgp.util.OpenPgpAppPreference + <org.openintents.openpgp.util.OpenPgpAppPreference2 android:key="openpgp_provider_list" android:title="@string/pref_provider_title" /> - --> <androidx.preference.Preference android:key="openpgp_key_id_pref" android:title="@string/pref_key_title" /> |