admin
2023-11-21 2eec3de87b6b616a69a46c1f97c2397159031d2f
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
 
        maven { url 'http://developer.huawei.com/repo/' }
 
        //字节跳动SDK
        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://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.3.72"
    }
}
 
allprojects {
    repositories {
 
        maven { url 'http://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://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' }
//        maven { url 'https://dl.bintray.com/umsdk/release' }
//        maven { url "https://dl.bintray.com/thelasterstar/maven/" }
        maven { url 'http://developer.huawei.com/repo/' }
 
 
    }
}