123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- repositories {
- gradlePluginPortal()
- google()
- mavenCentral()
- maven { url "https://nexus-sdk.cm253.com/repository/maven-public/" }
- maven {
- allowInsecureProtocol = true
- url 'http://maven.aliyun.com/nexus/content/groups/public/'
- }
- maven {
- allowInsecureProtocol = true
- url MAVEN_PUBLIC_URL
- credentials {
- username MAVEN_USERNAME
- password MAVEN_PASSWORD
- }
- }
- maven { url 'https://artifact.bytedance.com/repository/pangle/' }
- maven { url 'https://developer.huawei.com/repo/'}
- }
- 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 { url "https://nexus-sdk.cm253.com/repository/maven-public/" }
- maven {
- allowInsecureProtocol = true
- url 'http://maven.aliyun.com/nexus/content/groups/public/'
- }
- maven {
- allowInsecureProtocol = true
- url MAVEN_PUBLIC_URL
- credentials {
- username MAVEN_USERNAME
- password MAVEN_PASSWORD
- }
- }
- maven { url 'https://artifact.bytedance.com/repository/pangle/' }
- maven { url 'https://repo1.maven.org/maven2/' }
- maven { url 'https://developer.huawei.com/repo/'}
- flatDir {
- dirs 'libs'
- }
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|