session-android/build.gradle

59 lines
1.7 KiB
Groovy
Raw Normal View History

buildscript {
repositories {
mavenLocal()
google()
2019-05-31 04:26:14 +00:00
mavenCentral()
2020-09-06 23:43:01 +00:00
jcenter()
}
dependencies {
2020-09-06 23:43:01 +00:00
classpath "com.android.tools.build:gradle:4.0.1"
classpath files('libs/gradle-witness.jar')
2019-05-29 04:25:19 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.gms:google-services:4.3.3"
}
}
allprojects {
repositories {
mavenLocal()
maven {
url "https://raw.github.com/signalapp/maven/master/photoview/releases/"
content {
includeGroupByRegex "com\\.github\\.chrisbanes.*"
2019-03-28 20:21:57 +00:00
}
}
maven {
url "https://raw.github.com/signalapp/maven/master/shortcutbadger/releases/"
content {
includeGroupByRegex "me\\.leolin.*"
}
}
maven {
url "https://raw.github.com/signalapp/maven/master/circular-progress-button/releases/"
content {
includeGroupByRegex "com\\.github\\.dmytrodanylyk\\.circular-progress-button\\.*"
}
}
maven {
url "https://raw.github.com/signalapp/maven/master/sqlcipher/release/"
content {
includeGroupByRegex "org\\.signal.*"
}
}
maven { // textdrawable
url 'https://dl.bintray.com/amulyakhare/maven'
content {
includeGroupByRegex "com\\.amulyakhare.*"
}
}
maven {
url "https://dl.bintray.com/terl/lazysodium-maven"
content {
includeGroupByRegex "com\\.goterl\\.lazycode.*"
}
}
google()
jcenter()
maven { url "https://jitpack.io" }
}
}