mirror of
https://fast.feibisi.com/https://github.com/parcelvoy/android-sdk.git
synced 2026-03-06 21:42:06 +08:00
- Bump version to `1.0.0` - Bump lib versions - Handle push to refresh messages - target 36 and drop 21/22
29 lines
No EOL
725 B
Groovy
29 lines
No EOL
725 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
ext.kotlin_version = "2.1.10"
|
|
repositories {
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.12.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.4.3'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "io.snyk.gradle.plugin.snykplugin" version "0.7.0"
|
|
id 'maven-publish'
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |