kopia lustrzana https://github.com/vitorpamplona/amethyst
24 wiersze
897 B
Groovy
24 wiersze
897 B
Groovy
buildscript {
|
|
ext {
|
|
fragment_version = "1.5.5"
|
|
lifecycle_version = '2.6.0'
|
|
compose_ui_version = '1.4.0-rc01'
|
|
nav_version = "2.5.3"
|
|
room_version = "2.4.3"
|
|
accompanist_version = "0.28.0"
|
|
}
|
|
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id 'com.android.application' version '7.4.2' apply false
|
|
id 'com.android.library' version '7.4.2' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
|
|
id 'org.jetbrains.kotlin.jvm' version '1.8.10' apply false
|
|
}
|
|
|
|
task installGitHook(type: Copy) {
|
|
from new File(rootProject.rootDir, 'git-hooks/pre-commit')
|
|
from new File(rootProject.rootDir, 'git-hooks/pre-push')
|
|
into { new File(rootProject.rootDir, '.git/hooks') }
|
|
fileMode 0777
|
|
}
|
|
tasks.getByPath(':app:preBuild').dependsOn installGitHook |