-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (45 loc) · 1.21 KB
/
build.gradle
File metadata and controls
57 lines (45 loc) · 1.21 KB
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
51
52
53
54
55
56
57
buildscript {
ext.kotlin_version = '1.3.41'
ext {
application_id = 'com.branhamplayer.android'
application_id_dev_suffix = '.dev'
compile_sdk_version = 28
kotlin_version = '1.3.41'
min_sdk_version = 21
target_sdk_version = 28
version_code = 1
version_name = '1.0.0'
}
dependencies {
//Butter Knife
classpath 'com.jakewharton:butterknife-gradle-plugin:10.0.0'
// Firebase & Crashlytics
classpath 'com.google.gms:google-services:4.3.0'
classpath 'io.fabric.tools:gradle:1.26.1'
// Gradle
classpath 'com.android.tools.build:gradle:3.5.0-rc01'
// Kotlin
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
repositories {
google()
jcenter()
maven {
name 'The Fabric and Crashlytics Maven Repository'
url 'https://maven.fabric.io/public'
}
}
}
allprojects {
repositories {
google()
jcenter()
maven {
name 'The Google Maven Repository'
url 'https://maven.google.com/'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}