SmsForwarder/build.gradle

32 lines
1017 B
Groovy
Raw Normal View History

2021-02-10 06:38:05 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'https://maven.aliyun.com/repository/public' }
2021-02-10 06:38:05 +00:00
google()
2021-02-12 10:34:05 +00:00
maven { url "https://jitpack.io" }
2021-09-29 07:16:44 +00:00
maven { url 'https://repo1.maven.org/maven2/' }
2021-02-10 06:38:05 +00:00
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
2021-09-29 08:16:40 +00:00
classpath 'com.chenenyu:img-optimizer:1.2.0'
2021-02-10 06:38:05 +00:00
}
}
allprojects {
repositories {
maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'https://maven.aliyun.com/repository/public' }
2021-02-10 06:38:05 +00:00
google()
2021-02-12 10:34:05 +00:00
maven { url "https://jitpack.io" }
2021-09-29 07:16:44 +00:00
maven { url 'https://repo1.maven.org/maven2/' }
2021-02-10 06:38:05 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}