SmsForwarder/build.gradle
pppscn 263a9fb6c3 新增:隐私政策对话框(合规化,同意后才能使用软件)
优化:build.gradle 依赖升级
优化:增加 Android 12.x 支持(待验证)
修复:友盟统计失效
2022-01-09 14:47:03 +08:00

32 lines
1017 B
Groovy

// 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' }
google()
maven { url "https://jitpack.io" }
maven { url 'https://repo1.maven.org/maven2/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'com.chenenyu:img-optimizer:1.2.0'
}
}
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' }
google()
maven { url "https://jitpack.io" }
maven { url 'https://repo1.maven.org/maven2/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}