-
Notifications
You must be signed in to change notification settings - Fork 60
/
build.gradle
47 lines (35 loc) · 1.7 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
38
39
40
41
42
43
44
45
46
47
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: 'https://raw.githubusercontent.com/hss01248/flipperUtil/gradle7_5/remote3.gradle?q=2'
//apply from : 'https://raw.githubusercontent.com/hss01248/BaseAppAnalytics/master/remote.gradle'
apply from: 'https://raw.githubusercontent.com/hss01248/flipperUtil/dev/deps/depsLastestChecker.gradle'
//apply from: 'https://raw.githubusercontent.com/hss01248/flipperUtil/dev/deps/uploadAllTask.gradle'
// apply from: 'https://raw.githubusercontent.com/hss01248/flipperUtil/dev/z_config/git_branch_info.gradle'
ext {
// 快照版需要在版本号后面加-SNAPSHOT
//groupId='com.xxx.yyy.mylib'
groupId='com.github.hss01248.ImageLoader'
versionCode = '3.3.3.01'
isPublisToLocal=true
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0' // add plugin
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
/* maven {
url "http://dl.bintray.com/piasy/maven"
}*/
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
//maven { url 'https://github.com/link-u/AndroidGlideAvifDecoder/raw/master/repository' }
maven { url 'https://raw.githubusercontent.com/link-u/AndroidGlideAvifDecoder/master/repository' }
// maven { url 'https://cdn.jsdelivr.net/gh/link-u/AndroidGlideAvifDecoder@master/repository' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}