1、引入countly源码,高度为09d7817a38074cae8a6c34f94c04356b29f6a80f,引入原因是因为gradle、kotlin版本太高了,无法直接使用。需要自己定制化
34 lines
618 B
Groovy
34 lines
618 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.21.0' //for publishing
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'java-gradle-plugin'
|
|
id 'groovy'
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
uploadSymbolPlugin {
|
|
id = 'ly.count.android.plugins.upload-symbols'
|
|
implementationClass = 'ly.count.android.plugins.UploadSymbolsPlugin'
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation gradleApi()
|
|
implementation localGroovy()
|
|
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
|
|
}
|
|
|
|
apply plugin: "com.vanniktech.maven.publish" |