| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- repositories {
- mavenLocal()
- google()
- mavenCentral()
- gradlePluginPortal()
- maven {
- url'http://8.134.23.107:8088/repository/wenext-android/'
- credentials {
- username 'wenext-android'
- password 'wenext123456'
- }
- allowInsecureProtocol = true//允许 Gradle 使用不安全的协议
- }
- maven { url 'https://jitpack.io' }
- }
- dependencies {
- classpath libs.android.build.gradle
- classpath libs.kotlin.gradle.plugin
- classpath libs.gms.google.services
- classpath libs.firebase.crashlytics.gradle
- classpath libs.tencent.vasdolly.plugin
- // classpath libs.aabresguard.plugin
- if (project.hasProperty("ENABLE_TRACE") && project.ENABLE_TRACE.toBoolean()){
- classpath(libs.frame.trace.plugin)
- }
- classpath(libs.frame.bundle.tool)
- classpath 'io.github.flyjingfish:androidaop-plugin:2.7.0'
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|