forked from RetroMusicPlayer/RetroMusicPlayer
-
Notifications
You must be signed in to change notification settings - Fork 76
/
build.gradle
30 lines (27 loc) · 869 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
30
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
lifecycle_version = '2.6.1'
navigation_version = '2.5.3'
mdc_version = '1.9.0-beta01'
preference_version = '1.2.0'
appcompat_version = '1.6.1'
core_version = '1.10.0-rc01'
}
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
}
}
plugins {
id "com.github.ben-manes.versions" version "0.46.0"
id 'com.google.devtools.ksp' version '1.8.10-1.0.9' apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}