12345678910111213141516171819202122232425262728293031 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- ext {
- agp_version = '8.2.0'
- }
- repositories {
- google()
- mavenCentral()
- maven { url "https://jitpack.io" }
- maven {
- url "https://plugins.gradle.org/m2/"
- }
- }
- dependencies {
- classpath "com.android.tools.build:gradle:$agp_version"
- classpath 'gradle.plugin.chrisney:enigma:1.0.0.8'
- classpath "com.github.liujingxing:XmlClassGuard:1.1.0"
- }
- }
- allprojects {
- repositories {
- google()
- mavenCentral()
- maven { url 'https://jitpack.io' }
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|