rusefi-1/android/build.gradle

30 lines
535 B
Groovy
Raw Normal View History

2020-06-24 14:58:55 -07:00
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
}
}
2022-03-15 11:19:02 -07:00
apply from: 'dependencies.gradle'
2020-06-24 14:58:55 -07:00
allprojects {
repositories {
google()
jcenter()
2020-06-24 17:02:05 -07:00
maven { url 'https://jitpack.io' }
2020-06-24 14:58:55 -07:00
}
2022-03-15 11:19:02 -07:00
plugins.withType(JavaPlugin) {
dependencies {
implementation libs.annotations
2022-03-15 11:24:54 -07:00
testImplementation libs.junit
2022-03-15 11:19:02 -07:00
}
}
2020-06-24 14:58:55 -07:00
}
2020-06-24 15:21:05 -07:00
task clean(type: Delete) {
delete rootProject.buildDir
}