Skip to content

Commit

Permalink
remove jcenter()
Browse files Browse the repository at this point in the history
deprecated registry, use only `mavenCentral()` now.
unfortunately xposed api is not released there, so a custom registry is required.
  • Loading branch information
Palatis committed May 26, 2023
1 parent 2c39a0c commit c6490e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ buildscript {

repositories {
google()
jcenter()
mavenCentral()
maven { url "https://api.xposed.info/" }
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
Expand All @@ -20,8 +20,8 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://api.xposed.info/" }
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
}
Expand Down

0 comments on commit c6490e3

Please sign in to comment.