Files
open-keychain/build.gradle
Vincent Breitmoser 5d84bd8387 Update AGP to 7.4.2, update SqlDelight to 1.4.2
The adaptations to SqlDelight 1.4.2 leave the type namings *extremely*
messy. But it works and is as semantically equivalent as I could make
it.
2024-01-29 16:42:28 +01:00

34 lines
961 B
Groovy

buildscript {
ext {
kotlin_version = '1.8.20'
}
repositories {
google()
mavenCentral()
}
dependencies {
// NOTE: Always use fixed version codes not dynamic ones, e.g. 0.7.3 instead of 0.7.+, see README for more information
classpath 'com.android.tools.build:gradle:7.4.2'
// 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'
}
}
allprojects {
repositories {
google()
mavenCentral()
// needed for some legacy libs that aren't available on mavenCentral
jcenter()
}
}
// 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 {
compileSdkVersion = 33
}