-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (41 loc) · 979 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
35
36
37
38
39
40
41
42
43
44
45
buildscript {
ext {
appcompat_version = '1.1.0'
core_ktx_version = '1.2.0'
fragment_version = '1.2.2'
lifecycle_extension = '2.2.0'
anko_version = '0.10.8'
kotlin_version = '1.4.30'
wearable_version = '2.8.1'
gms_wearable_version = '17.0.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0-alpha07'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
applicationId = "com.ohyooo.wessager"
compileSdkVersion = 30
buildToolsVersion = "30.0.3"
minSdkVersion = 24
targetSdkVersion = 30
versionCode = 1
versionName = "1"
compileSdkVersion = 30
}