FoxMagiskModuleManager/build.gradle

22 lines
792 B
Groovy
Raw Normal View History

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"
2022-10-06 12:06:43 +00:00
project.ext.sentryConfigFile = new File(rootDir, "sentry.properties").getAbsoluteFile()
project.ext.hasSentryConfig = sentryConfigFile.exists()
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'
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
}