-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
90 lines (86 loc) · 2.98 KB
/
Copy pathbuild.gradle
File metadata and controls
90 lines (86 loc) · 2.98 KB
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
84
85
86
87
88
89
90
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_version = '1.3.1'
kotlin_version = '1.7.10'
}
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven { url 'https://jitpack.io' }
//阿里云
maven {
url 'https://maven.aliyun.com/repository/public'
}
maven {
credentials {
username '63d9f7d97076152136e17e68'
password 'nR3KUgpbs4ZN'
}
url 'https://packages.aliyun.com/maven/repository/2326137-release-InMFri/'
}
//第三方
maven { url "https://android-sdk.is.com" }
maven { url "https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea" }
maven { url "https://artifact.bytedance.com/repository/pangle" }
maven { url "https://sdk.tapjoy.com" }
maven {
url "https://s3.amazonaws.com/smaato-sdk-releases/"
}
maven {
url "https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea"
}
flatDir {
dirs 'libs'
}
maven {
allowInsecureProtocol = true
url 'http://172.30.10.160:8081/nexus/content/repositories/com.ndp.paysdk' }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven { url 'https://jitpack.io' }
//阿里云
maven {
url 'https://maven.aliyun.com/repository/public'
}
maven {
credentials {
username '63d9f7d97076152136e17e68'
password 'nR3KUgpbs4ZN'
}
url 'https://packages.aliyun.com/maven/repository/2326137-release-InMFri/'
}
//第三方
maven { url "https://android-sdk.is.com" }
maven { url "https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea" }
maven { url "https://artifact.bytedance.com/repository/pangle" }
maven { url "https://sdk.tapjoy.com" }
maven {
url "https://s3.amazonaws.com/smaato-sdk-releases/"
}
maven {
url "https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea"
}
flatDir {
dirs 'libs'
}
maven {
allowInsecureProtocol = true
url 'http://172.30.10.160:8081/nexus/content/repositories/com.ndp.paysdk' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}