chaosflix/build.gradle

59 lines
1.6 KiB
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.4.21'
repositories {
mavenLocal()
google()
2019-05-01 11:45:06 +00:00
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url 'https://jitpack.io' }
mavenCentral()
}
dependencies {
2022-05-13 17:28:57 +00:00
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2020-02-03 19:26:14 +00:00
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.1.1"
2022-05-13 17:28:57 +00:00
def nav_version = '2.4.1'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.7.1.1"
2020-06-13 21:37:19 +00:00
classpath "org.koin:koin-gradle-plugin:2.1.6"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2017-10-31 19:49:43 +00:00
mavenLocal()
2018-09-08 16:54:21 +00:00
google()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://plugins.gradle.org/m2/" }
2018-01-08 19:16:22 +00:00
maven { url 'https://jitpack.io' }
mavenCentral()
}
}
ext{
2018-09-08 16:54:21 +00:00
minSDK = 22
2022-05-13 17:29:29 +00:00
targetSDK = 31
compileSdkVersion = 31
supportLibraryVersion = "30.0.2"
2018-12-10 00:27:02 +00:00
constraintLayoutVersion = "1.1.3"
}
task clean(type: Delete) {
delete rootProject.buildDir
2019-05-01 11:45:06 +00:00
}
2019-05-01 14:25:39 +00:00
apply plugin: "org.jlleitschuh.gradle.ktlint-idea"
2019-05-01 11:45:06 +00:00
subprojects {
apply plugin: "org.jlleitschuh.gradle.ktlint"
}
2020-06-13 21:37:19 +00:00
apply plugin: 'koin'