summaryrefslogtreecommitdiff
path: root/tlsexternalcertprovider/build.gradle
diff options
context:
space:
mode:
authorconorsmith <conor.smith42@gmail.com>2023-09-03 18:14:54 +0200
committerArne Schwabe <arne@rfc2549.org>2023-10-11 12:36:19 +0200
commit87aac67b611f616aebfb722679b40e3f49576f01 (patch)
treed71570890c658cd738f9de01439933a49c0b4765 /tlsexternalcertprovider/build.gradle
parent70683fb566625bc51673b22be974b494b64e0108 (diff)
Add bouncycastle dependency to version catalog
Diffstat (limited to 'tlsexternalcertprovider/build.gradle')
-rw-r--r--tlsexternalcertprovider/build.gradle15
1 files changed, 5 insertions, 10 deletions
diff --git a/tlsexternalcertprovider/build.gradle b/tlsexternalcertprovider/build.gradle
index 608212f7..bb50eb03 100644
--- a/tlsexternalcertprovider/build.gradle
+++ b/tlsexternalcertprovider/build.gradle
@@ -7,14 +7,9 @@ plugins {
alias libs.plugins.android.application
}
-ext {
- bouncycastleVersion = '1.49'
-}
-
android {
compileSdkVersion 34
-
defaultConfig {
applicationId "de.blinkt.externalcertprovider"
minSdkVersion 21
@@ -51,11 +46,11 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation (
- //'org.bouncycastle:bcprov-jdk15on:' + bouncycastleVersion,
- //'org.bouncycastle:bcprov-ext-jdk15on:' + bouncycastleVersion,
- //'org.bouncycastle:bcpkix-jdk15on:' + bouncycastleVersion,
- 'org.bouncycastle:bcmail-jdk15on:' + bouncycastleVersion,
- //'org.bouncycastle:bcpg-jdk15on:' + bouncycastleVersion
+// libs.org.bouncycastle.bcprov.jdk15on,
+// libs.org.bouncycastle.bcprov.ext.jdk15on,
+// libs.org.bouncycastle.bcpkix.jdk15on,
+ libs.org.bouncycastle.bcmail.jdk15on,
+// libs.org.bouncycastle.bcpg.jdk15on,
)
testImplementation(libs.junit)