-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (64 loc) · 1.75 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
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.0'
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 34
defaultConfig {
applicationId 'org.omnirom.deskclock'
minSdkVersion 26
targetSdkVersion 34
versionCode 5
versionName '1.0.5'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard.flags'
signingConfig signingConfigs.debug
}
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE.txt'
exclude '.readme'
exclude 'META-INF/DEPENDENCIES'
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
aaptOptions {
additionalParameters '--auto-add-overlay'
}
namespace 'org.omnirom.deskclock'
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.preference:preference:1.0.0'
implementation 'junit:junit:4.13.2'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'com.google.android.material:material:1.1.0'
// androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}