forked from qw123wh/new-clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
91 lines (81 loc) · 2.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
buildscript {
ext.kotlin_version = '1.6.10-RC'
repositories {
mavenCentral()
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 33
buildToolsVersion '29.0.3'
defaultConfig {
minSdkVersion 23
targetSdkVersion 30
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary = true
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
lintOptions {
abortOnError false
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),
'proguard.flags'
}
}
productFlavors {
aosp {
flavorDimensions 'default'
applicationId 'com.best.deskclock'
}
}
sourceSets {
main {
res.srcDirs = ['res']
java.srcDirs = ['src']
assets.srcDirs = ['assets']
manifest.srcFile 'AndroidManifest.xml'
}
}
}
repositories {
mavenCentral()
jcenter()
google()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation "androidx.annotation:annotation:1.1.0"
implementation "androidx.collection:collection:1.1.0"
implementation "androidx.arch.core:core-common:2.1.0"
implementation "androidx.lifecycle:lifecycle-common:2.2.0"
implementation "androidx.lifecycle:lifecycle-runtime:2.2.0"
implementation "androidx.transition:transition:1.3.1"
implementation "androidx.core:core:1.3.1"
implementation "androidx.legacy:legacy-support-core-ui:1.0.0"
implementation "androidx.media:media:1.1.0"
implementation "androidx.legacy:legacy-support-v13:1.0.0"
implementation "androidx.preference:preference:1.1.1"
implementation "androidx.appcompat:appcompat:1.2.0"
implementation "androidx.gridlayout:gridlayout:1.0.0"
implementation "androidx.percentlayout:percentlayout:1.0.0"
implementation "androidx.recyclerview:recyclerview:1.1.0"
implementation "com.google.android.material:material:1.3.0-alpha02"
//implementation "androidx.core:core-ktx:+"
implementation "androidx.core:core-ktx:1.6.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.applandeo:material-calendar-view:1.7.0'
}