-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.gradle
37 lines (35 loc) · 1 KB
/
build.gradle
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
apply plugin: 'com.alipay.apollo.optimize'// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.mpaas_artifact = "mpaas-baseline"
ext.mpaas_baseline = "10.1.68-34"
repositories {
google()
jcenter()
maven {
url 'https://mvn.cloud.alipay.com/nexus/content/repositories/releases/'
name 'alipay'
credentials {
username 'mvn_read_ws'
password 'mrk8929'
}
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath 'com.android.boost.easyconfig:easyconfig:2.6.5'
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://mvn.cloud.alipay.com/nexus/content/repositories/releases/'
name 'alipay'
credentials {
username 'mvn_read_ws'
password 'mrk8929'
}
}
}
}