FoxMagiskModuleManager/build.gradle
Fox2Code c010d7bf0c Release 0.1.1
- Improve the reading of invalid `module.prop` files
  (Should fix Substratum not appearing in the module list)
- Add fallback support link for substratum
- Update Libraries
2021-10-24 16:35:29 +02:00

20 lines
639 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
project.ext.latestAboutLibsRelease = "8.9.4"
dependencies {
classpath "com.android.tools.build:gradle:7.0.3"
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
}