-
-
Notifications
You must be signed in to change notification settings - Fork 145
/
build.gradle
55 lines (48 loc) · 1.24 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
buildscript {
ext {
compileSdk = 31
minSdk = 24
targetSdk = 31
kotlin_version = '1.6.21'
kotlinx_coroutines_version = '1.5.2'
lifecycle_runtime_ktx_version = '2.4.1'
fragment_ktx_version = '1.4.1'
core_ktx_version = '1.7.0'
annotation_version = '1.3.0'
appcompat_version = '1.4.1'
fragment_version = '1.4.1'
constraintlayout_version = '2.1.3'
filament_version = '1.21.1'
arcore_version = '1.31.0'
fuel_version = '2.3.1'
material_version = '1.6.0'
}
repositories {
google()
mavenLocal()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// Maven Central Publish
classpath "com.vanniktech:gradle-maven-publish-plugin:0.18.0"
}
}
allprojects {
repositories {
google()
mavenLocal()
mavenCentral()
}
}
allprojects {
plugins.withId("com.vanniktech.maven.publish") {
mavenPublish {
// sonatypeHost = "S01"
}
}
}
task printProjectProperties {
project.properties.each { println " $it" }
}