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-12-02 16:16:42 +00:00
|
|
|
maven { url 'https://jitpack.io' }
|
2021-10-01 20:19:42 +00:00
|
|
|
}
|
2022-12-09 19:42:18 +00:00
|
|
|
project.ext.latestAboutLibsRelease = "10.5.2"
|
2022-10-06 12:06:43 +00:00
|
|
|
project.ext.sentryConfigFile = new File(rootDir, "sentry.properties").getAbsoluteFile()
|
|
|
|
project.ext.hasSentryConfig = sentryConfigFile.exists()
|
2022-11-26 02:00:30 +00:00
|
|
|
project.ext.sentryCli = [
|
|
|
|
logLevel: "debug",
|
2022-11-26 16:48:06 +00:00
|
|
|
flavorAware: true
|
2022-11-26 02:00:30 +00:00
|
|
|
]
|
2022-12-02 16:16:42 +00:00
|
|
|
project.ext.kotlin_version = "1.7.20"
|
2021-10-01 20:19:42 +00:00
|
|
|
dependencies {
|
2022-10-18 14:00:10 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.3.1'
|
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
|
|
|
|
}
|