1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00
matomocamp-companion-android/build.gradle

26 lines
599 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-02-05 00:19:46 +01:00
ext.kotlin_version = '1.4.30'
repositories {
google()
jcenter()
}
dependencies {
2021-01-27 19:57:28 +01:00
classpath 'com.android.tools.build:gradle:4.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
maven {
url "https://jitpack.io"
content {
includeGroup "com.github.chrisbanes"
}
}
google()
jcenter()
}
}