mirror of
https://github.com/Michatec/Radio.git
synced 2026-06-03 13:40:28 +02:00
765ccc9250
Add JitPack repository to all projects.
18 lines
446 B
Groovy
18 lines
446 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
allprojects {
|
|
repositories {
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.android.application' version '9.1.0' apply false
|
|
id 'com.android.library' version '9.1.0' apply false
|
|
id 'org.jetbrains.kotlin.android' version "2.3.20" apply false
|
|
}
|
|
|
|
tasks.register('clean', Delete) {
|
|
delete rootProject.buildDir()
|
|
}
|