-
Notifications
You must be signed in to change notification settings - Fork 63
/
build.gradle
57 lines (49 loc) · 1.46 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
plugins {
id("com.android.application") version "8.1.2" apply true
}
android {
namespace 'com.android.deskclock'
compileSdk 34
defaultConfig {
minSdkVersion 27
targetSdkVersion 34
}
sourceSets {
main {
res.srcDirs = ['res']
java.srcDirs = ['src']
assets.srcDirs = ['assets']
manifest.srcFile 'AndroidManifest.xml'
}
test {
java.srcDirs = ['tests']
}
}
buildFeatures {
buildConfig true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
lint {
lintConfig = file("lint.xml")
}
}
dependencies {
implementation 'com.google.android.material:material:1.7.0-alpha03'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.preference:preference:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.3.0-rc01'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.loader:loader:1.1.0'
implementation 'androidx.test:core:1.5.0'
implementation 'androidx.test:rules:1.5.0'
testImplementation 'junit:junit:4.13.2'
}
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:unchecked'
// options.deprecation = true
}