2021-10-01 20:19:42 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
2022-10-04 14:24:07 +00:00
|
|
|
project.ext.latestAboutLibsRelease = "10.5.0"
|
|
|
|
project.ext.hasSentryConfig = false
|
2021-10-01 20:19:42 +00:00
|
|
|
dependencies {
|
2022-10-04 14:24:07 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.3.0'
|
2022-08-24 19:42:51 +00:00
|
|
|
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:${latestAboutLibsRelease}"
|
2021-10-01 20:19:42 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|