FoxMagiskModuleManager/build.gradle

20 lines
640 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-04-15 12:27:04 +00:00
project.ext.latestAboutLibsRelease = "10.1.0"
2021-10-01 20:19:42 +00:00
dependencies {
2022-04-15 12:27:04 +00:00
classpath 'com.android.tools.build:gradle:7.1.3'
2021-10-01 20:19:42 +00:00
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:${latestAboutLibsRelease}"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}