0
0
mirror of https://github.com/schwabe/ics-openvpn.git synced 2024-09-19 19:42:29 +02:00

Remove module specefic repository decleration

Repositories are defined in top level build.gradle. No need to define
them again in the modules.
This commit is contained in:
Uipko Berghuis 2019-12-05 22:38:50 +01:00 committed by Arne Schwabe
parent b5e0eee4b7
commit 8a1fcb8cfc
4 changed files with 6 additions and 22 deletions

View File

@ -15,7 +15,10 @@ buildscript {
}
}
repositories {
google()
allprojects {
repositories {
google()
jcenter()
maven(url = "https://jitpack.io")
}
}

View File

@ -13,13 +13,6 @@ apply {
plugin("kotlin-android-extensions")
}
repositories {
jcenter()
maven(url = "https://jitpack.io")
google()
}
val openvpn3SwigFiles = File(buildDir, "generated/source/ovpn3swig/ovpn3")
tasks.register<Exec>("generateOpenVPN3Swig")

View File

@ -5,12 +5,6 @@
apply plugin: 'com.android.application'
repositories {
jcenter()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
}
android {
compileSdkVersion 28

View File

@ -5,12 +5,6 @@
apply plugin: 'com.android.application'
repositories {
jcenter()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
}
ext {
bouncycastleVersion = '1.49'
}