-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
50 lines (45 loc) · 1.38 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
buildscript {
ext {
kotlin_version = '1.6.20'
nav_version = '2.5.3'
dagger_version = '2.44.2'
koin_version = '3.4.0'
}
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
maven {
url = uri("https://plugins.gradle.org/m2/")
}
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.5'
classpath 'com.google.firebase:perf-plugin:1.4.2'
classpath 'com.project.starter:easylauncher:6.1.0'
}
}
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
id 'com.google.secrets_gradle_plugin' version '0.4'
}
allprojects {
ext {
appConfig = [
applicationId: 'com.teamdefine.signease',
appName : 'Sign Ease',
versionCode : 2,
versionName : '1.1.0'
]
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}