-
Notifications
You must be signed in to change notification settings - Fork 41
/
build.gradle
29 lines (26 loc) · 1009 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.nav_version = "2.8.0"
ext.protobufVersion = '0.9.4'
ext.shizuku_version = '13.1.5'
ext.refine_version = '4.4.0'
repositories {
google()
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath "com.google.protobuf:protobuf-gradle-plugin:$protobufVersion"
classpath "com.google.android.gms:oss-licenses-plugin:0.10.6"
}
}
plugins {
id 'com.android.application' version '8.5.2' apply false
id 'com.android.library' version '8.5.2' apply false
id 'org.jetbrains.kotlin.android' version '2.0.20' apply false
id 'com.google.dagger.hilt.android' version '2.41' apply false
id 'dev.rikka.tools.refine' version '4.1.0' apply false
id 'com.google.devtools.ksp' version '2.0.20-1.0.25' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}