Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bitfireAT/cert4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicki Hirner <hirner@bitfire.at>2021-06-06 13:21:25 +0300
committerRicki Hirner <hirner@bitfire.at>2021-06-06 13:34:07 +0300
commit8791b4352b2b9123d19b9d186730913b9365258c (patch)
tree67a8cebda4074673e11b8fd65e703294c29b0012
parent93a7e0d9685c9f14216220b6cfb1f3e4e7fc8947 (diff)
Use mavenCentral instead of jcenter
-rw-r--r--build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 75bad90..0e52f97 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,14 +1,14 @@
buildscript {
ext.versions = [
- kotlin: '1.4.31',
+ kotlin: '1.4.32',
dokka: '0.10.1',
conscrypt: '2.5.2'
]
repositories {
- jcenter()
google()
+ mavenCentral()
}
dependencies {
@@ -19,8 +19,8 @@ buildscript {
}
repositories {
- jcenter()
google()
+ mavenCentral()
}
apply plugin: 'com.android.library'
@@ -63,7 +63,7 @@ android {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
- implementation 'androidx.appcompat:appcompat:1.2.0'
+ implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'