-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
65 lines (56 loc) · 1.58 KB
/
build.gradle
File metadata and controls
65 lines (56 loc) · 1.58 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
58
59
60
61
62
63
64
65
import org.gradle.internal.jvm.Jvm
buildscript {
ext {
/** Builds */
sherbet_version_name = '0.5.8-alpha'
sherbet_version_code = 58
sdk_version_min = 24
sdk_version_target = 30
build_tools_version = "30.0.3"
group_id = "com.github.ApexCaptain"
compie_sdk_version = "android-31"
/** Bases */
// Kotlin
kotlin_version = '1.9.0'
// Dokka
dokka_version = "0.10.1"
// Maven Gradle Plugin
maven_gradle_plugin_version = '2.1'
// Ted RxJava2
tedpermission_rxjava2_version = '3.3.0'
/** Call Adapters */
// RxJava2
rxjava2_version = '2.1.1'
// Coroutine
corutine_version = '1.5.1-native-mt'
/** Converters */
// Gson
gson_version = '2.9.0'
// Moshi
moshi_version = '1.15.0'
// Simple XML
simple_xml_version = "2.7.1"
}
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
}
}
println "Gradle uses Java ${Jvm.current()}"
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}