-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
52 lines (46 loc) · 1.33 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
ver_appcompat = '1.4.1'
ver_activity = '1.4.0'
ver_core = '1.7.0'
ver_glide = '4.12.0'
ver_gradle = '7.0.4'
ver_hiddenapi = '4.2'
ver_leak = "2.8.1"
ver_license ="1.0.0"
ver_lifecycle_extensions = "2.4.0"
ver_kotlin = '1.6.10'
ver_kotlin_coroutines = "1.6.0"
ver_material = "1.5.0"
ver_navigation = '2.1.0-beta02'
ver_preference = "1.2.0-rc01"
ver_rikka_design = "3.1.8"
ver_sunrise_cal = "1.2"
ver_timber = "5.0.1"
ver_junit = "4.13.2"
ver_xposed = "82"
// Shizuku manifest
apply from: 'Shizuku-API/manifest.gradle'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$ver_gradle"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$ver_kotlin"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}