forked from Unity-Technologies/unity-ads-android
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
34 lines (30 loc) · 971 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
allprojects {
repositories {
google()
maven { url 'https://jitpack.io' }
mavenCentral()
}
}
buildscript {
ext {
kotlin_version = '1.4.32' // 1.5 deprecated Java6
coroutines_version = '1.4.3' // 1.6.0 deprecated Java6
dokka_version = '1.6.10'
startup_runtime_version = '1.1.1'
unity_identifiers_version = '1.0.0'
lifecycle_version = '2.5.1'
}
repositories {
gradlePluginPortal()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath 'org.jacoco:org.jacoco.core:0.8.5'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.20.0'
classpath 'io.github.gradle-nexus:publish-plugin:1.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
}
}
apply from: 'nexusPublishing.gradle'