-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
68 lines (56 loc) · 1.8 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
Properties localProperties = new Properties()
if (project.rootProject.file('local.properties').exists()) {
localProperties.load(project.rootProject.file('local.properties').newDataInputStream())
}
ext.enableSystrace = localProperties.getProperty('ENABLE_SYSTRACE', 'false') == 'true'
ext.signingKeyAlias = 'jieqi'
ext.signingKeyPassword = 'jieqi123456'
ext.signingStoreFile = 'debug.jks'
ext.signingStorePassword = 'jieqi123456'
ext.superNode = localProperties.getProperty('n2n.config.superNode')
ext.kotlin_version = '1.6.10'
repositories {
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
appcompat_version = '1.3.1'
core_ktx_version = '1.6.0'
material_version = '1.4.0'
leanback_version = '1.0.0'
swiperefreshlayout_version = '1.1.0'
constraintlayout_version = '2.1.0'
navigation_version = '2.3.5'
actionsheet_version = '1.0.3'
lifecycle_ktx_version = '2.3.1'
kotlinx_coroutines_android_version = '1.5.1'
permissionsdispatcher_version = '4.6.0'
retrofit_version = '2.9.0'
okhttp_version = '4.9.1'
rxandroid_version = '2.1.1'
rxjava_version = '2.2.16'
logger_version = '2.2.0'
utilcodex_version = '1.28.0'
play_services_auth_version = '19.2.0'
junit_version = '1.1.3'
espresso_core_version = '3.4.0'
}