amethyst/build.gradle

51 wiersze
1.9 KiB
Groovy
Czysty Zwykły widok Historia

2023-01-11 18:31:20 +00:00
buildscript {
ext {
2023-06-13 14:52:29 +00:00
fragment_version = "1.6.0"
2023-03-30 20:53:13 +00:00
lifecycle_version = '2.6.1'
2023-05-09 17:20:59 +00:00
compose_ui_version = '1.4.3'
2023-06-13 14:52:29 +00:00
nav_version = "2.6.0"
2023-01-11 18:31:20 +00:00
room_version = "2.4.3"
accompanist_version = '0.30.1'
2023-05-23 00:04:33 +00:00
coil_version = '2.4.0'
2023-07-08 21:04:59 +00:00
vico_version = '1.7.1'
exoplayer_version = '1.1.0'
2023-01-11 18:31:20 +00:00
}
dependencies {
classpath 'com.google.gms:google-services:4.3.15'
}
2023-01-11 18:31:20 +00:00
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
2023-05-26 16:19:38 +00:00
id 'com.android.application' version '8.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'org.jetbrains.kotlin.jvm' version '1.8.21' apply false
2023-03-07 18:09:26 +00:00
}
task installGitHook(type: Copy) {
2023-03-08 19:17:04 +00:00
from new File(rootProject.rootDir, 'git-hooks/pre-commit')
from new File(rootProject.rootDir, 'git-hooks/pre-push')
2023-03-07 18:09:26 +00:00
into { new File(rootProject.rootDir, '.git/hooks') }
fileMode 0777
}
2023-06-06 19:49:52 +00:00
tasks.getByPath(':app:preBuild').dependsOn installGitHook
subprojects {
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
kotlinOptions {
if (project.findProperty("composeCompilerReports") == "true") {
freeCompilerArgs += [
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
project.buildDir.absolutePath + "/compose_compiler"
]
}
if (project.findProperty("composeCompilerMetrics") == "true") {
freeCompilerArgs += [
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
project.buildDir.absolutePath + "/compose_compiler"
]
}
}
}
}