RustAssistant/build.gradle

47 lines
1.5 KiB
Groovy
Raw Normal View History

2022-04-04 14:03:10 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2022-04-04 14:03:10 +00:00
buildscript {
repositories {
maven { url 'https://maven.aliyun.com/repository/google' }
maven{ url 'https://maven.aliyun.com/repository/jcenter'}
2022-04-04 14:03:10 +00:00
google()
mavenCentral()
maven {url 'https://dl.google.com/dl/android/maven2/'}
2022-04-04 14:03:10 +00:00
}
dependencies {
//noinspection AndroidGradlePluginVersion
2022-05-14 00:19:30 +00:00
classpath 'com.android.tools.build:gradle:7.2.0'
//Do n't Update
2022-07-08 14:34:22 +00:00
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0'
//noinspection GradleDependency
classpath 'com.google.gms:google-services:4.3.14'
//noinspection GradleDependency
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
// classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5"
classpath 'com.google.firebase:perf-plugin:1.4.2'
2022-04-04 14:03:10 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url 'https://maven.aliyun.com/repository/google' }
maven{ url 'https://maven.aliyun.com/repository/jcenter'}
2022-04-04 14:03:10 +00:00
google()
mavenCentral()
2022-04-04 14:03:10 +00:00
maven {
url "https://jitpack.io"
}
maven {url 'https://dl.google.com/dl/android/maven2/'}
2022-04-04 14:03:10 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}