meditationassistant/build.gradle
Trevor Slocum 980115a5bc Include ColorPickerPreference as local library
This library has not been migrated to a newer repository, and is no longer available for use externally.
2024-10-08 21:11:34 -07:00

23 lines
345 B
Groovy

buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.7.0'
}
}
tasks.whenTaskAdded { task ->
if (task.name.equals("lint")) {
task.enabled = false
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}