mirror of
https://fast.feibisi.com/https://github.com/parcelvoy/android-sdk.git
synced 2026-03-06 21:42:06 +08:00
29 lines
No EOL
723 B
Groovy
29 lines
No EOL
723 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
ext.kotlin_version = "1.8.10"
|
|
repositories {
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.2.2'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
classpath 'com.google.gms:google-services:4.3.15'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "io.snyk.gradle.plugin.snykplugin" version "0.4"
|
|
id 'maven-publish'
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |