mirror of
https://github.com/owenlejeune/MYDex.git
synced 2025-11-09 16:52:42 -05:00
initial commit
This commit is contained in:
26
build.gradle
Normal file
26
build.gradle
Normal file
@@ -0,0 +1,26 @@
|
||||
buildscript {
|
||||
def gradle = "7.1.2"
|
||||
def kotlin = "1.6.21"
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven { url "https://jitpack.io" }
|
||||
|
||||
dependencies {
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin"
|
||||
classpath "com.android.tools.build:gradle:$gradle"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
subprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven { url "https://jitpack.io" }
|
||||
}
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
Reference in New Issue
Block a user