2013-09-09 21:11:16 +02:00
|
|
|
buildscript {
|
|
|
|
|
repositories {
|
2018-01-20 23:59:41 +01:00
|
|
|
google()
|
2022-12-22 13:08:38 +01:00
|
|
|
mavenCentral()
|
2013-09-09 21:11:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2014-06-04 10:22:05 +02:00
|
|
|
// NOTE: Always use fixed version codes not dynamic ones, e.g. 0.7.3 instead of 0.7.+, see README for more information
|
2022-12-22 15:50:26 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:4.2.2'
|
2019-11-15 12:09:08 +01:00
|
|
|
classpath 'com.squareup.sqldelight:gradle-plugin:0.8.0'
|
2013-09-09 21:11:16 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
2018-01-20 23:59:41 +01:00
|
|
|
google()
|
2022-12-22 13:08:38 +01:00
|
|
|
mavenCentral()
|
|
|
|
|
// needed for some legacy libs that aren't available on mavenCentral
|
2019-07-06 00:00:00 +00:00
|
|
|
jcenter()
|
2013-09-09 21:11:16 +02:00
|
|
|
}
|
|
|
|
|
}
|
2013-05-25 23:13:39 +02:00
|
|
|
|
2015-03-02 16:21:51 +01:00
|
|
|
// SDK Version and Build Tools used by all subprojects
|
|
|
|
|
// See http://tools.android.com/tech-docs/new-build-system/tips#TOC-Controlling-Android-properties-of-all-your-modules-from-the-main-project.
|
|
|
|
|
ext {
|
2022-12-22 15:50:26 +01:00
|
|
|
compileSdkVersion = 33
|
2015-06-14 15:05:47 +02:00
|
|
|
}
|