-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (54 loc) · 1.87 KB
/
Copy pathbuild.gradle
File metadata and controls
56 lines (54 loc) · 1.87 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
buildscript {
ext {
versions = [
compileSdk : 36,
targetSdk : 36,
minSdk : 21,
ndk : '29.0.14206865',
cmake : '4.1.2',
androidxAppcompat : '1.7.1',
lifecycle : '2.8.3',
androidxAnnotations: '1.6.0',
androidxTest : '1.7.0',
androidxTestRunner : '1.7.0',
coroutines : '1.10.2',
leakCanary : '2.14',
kotlin : '2.3.0',
intellijAnnotations: '13.0',
material : '1.13.0',
androidXextJunit : '1.3.0',
androidGradlePlugin: '8.13.2',
junit : '4.13.2',
mockito : '5.21.0',
robolectric : '4.16',
assertj3 : '3.27.6',
concurrentunit : '0.4.6',
openglApi : 'gl1.1-android-2.1_r1',
mockwebserver : '5.3.2',
relinker : '1.4.5',
mavenPublishPlugin : '0.35.0',
]
}
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath "com.android.tools.build:gradle:$versions.androidGradlePlugin"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath "com.vanniktech:gradle-maven-publish-plugin:$versions.mavenPublishPlugin"
}
}
plugins {
id 'org.jetbrains.kotlinx.binary-compatibility-validator' version '0.18.1'
}
subprojects {
tasks.withType(JavaCompile).configureEach {
options.compilerArgs << '-Xlint'
}
repositories {
google()
mavenCentral()
}
}