-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
36 lines (28 loc) · 1020 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
buildscript {
ext {
commonValues = [
appBaseNameSpace : 'com.nll.helper',
releaseMinifyEnabled : true,
debugMinifyEnabled : true,
releaseShrinkResourcesEnabled: false,
debugShrinkResourcesEnabled : false
]
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:${libs.versions.androidGradleVersion.get()}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${libs.versions.kotlinVersion.get()}"
}
}
plugins {
alias(libs.plugins.android.application) apply(false)
alias(libs.plugins.android.library) apply(false)
alias(libs.plugins.kotlin.android) apply(false)
alias(libs.plugins.banes.versions)
}
allprojects {
layout.buildDirectory = "${System.properties['user.home']}${File.separator}.build${File.separator}${rootProject.name}${File.separator}${project.name}"
}