1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- repositories {
- gradlePluginPortal()
- google()
- mavenCentral()
- maven {
- allowInsecureProtocol = true
- url 'http://maven.aliyun.com/nexus/content/groups/public/'
- }
- maven { url 'https://developer.huawei.com/repo/' }
- maven { url 'https://repo1.maven.org/maven2/' }
- maven { url "http://mvn.mob.com/android" }
- maven {
- allowInsecureProtocol = true
- url MAVEN_PUBLIC_URL
- credentials {
- username MAVEN_USERNAME
- password MAVEN_PASSWORD
- }
- }
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:7.2.2'
- classpath 'com.huawei.agconnect:agcp:1.6.0.300'
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
- }
- allprojects {
- repositories {
- gradlePluginPortal()
- google()
- mavenCentral()
- maven {
- allowInsecureProtocol = true
- url 'http://maven.aliyun.com/nexus/content/groups/public/'
- }
- maven { url 'https://developer.huawei.com/repo/' }
- maven { url 'https://repo1.maven.org/maven2/' }
- maven { url "http://mvn.mob.com/android" }
- maven {
- allowInsecureProtocol = true
- url MAVEN_PUBLIC_URL
- credentials {
- username MAVEN_USERNAME
- password MAVEN_PASSWORD
- }
- }
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|