2013-09-09 21:11:16 +02:00
|
|
|
buildscript {
|
2024-01-10 17:02:03 +01:00
|
|
|
ext {
|
|
|
|
|
kotlin_version = '1.8.20'
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-09 21:11:16 +02:00
|
|
|
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
|
2024-01-11 10:52:54 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:8.1.4'
|
2024-01-10 17:02:03 +01:00
|
|
|
// classpath 'com.squareup.sqldelight:gradle-plugin:0.8.0'
|
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
|
classpath 'com.squareup.sqldelight:gradle-plugin:1.5.4'
|
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
|
2025-09-30 15:13:06 +02:00
|
|
|
//jcenter()
|
|
|
|
|
// used by:
|
|
|
|
|
// - com.github.BelooS:ChipsLayoutManager:v0.3.7@aar
|
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
|
// used by:
|
|
|
|
|
// - com.fidesmo:nordpol-android:0.1.22
|
|
|
|
|
// - com.journeyapps:zxing-android-embedded:3.4.0
|
|
|
|
|
maven { url 'https://repo.spring.io/libs-milestone/' }
|
|
|
|
|
// used by:
|
|
|
|
|
// - eu.davidea:flexible-adapter:5.1.0
|
|
|
|
|
maven { url 'https://verve.jfrog.io/artifactory/verve-gradle-release/' }
|
|
|
|
|
// used by:
|
|
|
|
|
// - eu.davidea:flexible-adapter-ui:1.0.0-b5
|
|
|
|
|
maven { url 'https://repo.spring.io/plugins-release/' }
|
|
|
|
|
// used by:
|
|
|
|
|
// - eu.davidea:flexible-adapter-livedata:1.0.0-b2
|
|
|
|
|
maven { url 'https://maven.scijava.org/content/repositories/public/' }
|
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 {
|
2024-01-10 17:48:10 +01:00
|
|
|
compileSdkVersion = 34
|
2015-06-14 15:05:47 +02:00
|
|
|
}
|