admin
6 天以前 7f0825f8195a522ed7e8bcdb6347f3a719e06c74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Top-level build file where you can add configuration options common to all sub-projects/modules.
 
buildscript {
 
    repositories {
        maven {url 'https://developer.huawei.com/repo/'}
 
        //字节跳动SDK
        maven {
            url "https://artifact.bytedance.com/repository/Volcengine/"
        }
        maven {
            url "https://artifact.bytedance.com/repository/pangle/"
        }
 
        maven {
            url "https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_support/"
        }
 
        maven { url "https://artifact.bytedance.com/repository/AwemeOpenSDK" }
 
 
        maven {
            url "https://maven.aliyun.com/repository/public"
        }
 
        maven {
            url "https://maven.aliyun.com/repository/google"
        }
 
 
        maven { url 'https://repo1.maven.org/maven2/' }
 
        jcenter()
        mavenCentral()
        google()
    }
 
    dependencies {
        classpath 'com.android.tools.build:gradle:4.1.1'
        classpath 'com.huawei.agconnect:agcp:1.4.1.300'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10"
    }
}
 
allprojects {
    repositories {
 
        maven {url 'https://developer.huawei.com/repo/'}
 
        maven {
            url "https://artifact.bytedance.com/repository/Volcengine/"
        }
        maven {
            url "https://artifact.bytedance.com/repository/pangle/"
        }
 
        maven { url "https://artifact.bytedance.com/repository/AwemeOpenSDK" }
 
        maven {
            url "https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_support/"
        }
 
 
        maven {
            url "https://maven.aliyun.com/repository/public"
        }
 
        maven {
            url "https://maven.aliyun.com/repository/google"
        }
 
        maven { url 'https://repo1.maven.org/maven2/' }
 
        jcenter()
        google()
 
 
        maven { url 'https://jitpack.io' }
 
 
    }
}