-
-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathbuild.gradle
More file actions
164 lines (137 loc) · 5.07 KB
/
build.gradle
File metadata and controls
164 lines (137 loc) · 5.07 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
* Nextcloud Notes - Android Client
*
* SPDX-FileCopyrightText: 2015-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2015-2024 Stefan Niedermann <info@niedermann.it>
* SPDX-FileCopyrightText: 2020 Hui-Ouyang16 <11710106@mail.sustech.edu.cn>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
apply plugin: 'com.android.application'
apply plugin: 'org.jetbrains.kotlin.android'
android {
compileSdk 35
namespace 'it.niedermann.owncloud.notes'
defaultConfig {
applicationId "it.niedermann.owncloud.notes"
minSdk 24
targetSdk 35
versionCode 40050000
versionName "4.5.0 Alpha1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
}
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
buildFeatures {
viewBinding true
buildConfig true
}
buildTypes {
debug {
testCoverageEnabled true
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
testCoverage.jacocoVersion = "0.8.13"
flavorDimensions = ["version"]
productFlavors {
fdroid {
dimension "version"
}
dev {
dimension "version"
applicationIdSuffix ".dev"
}
play {
dimension "version"
}
}
testOptions {
unitTests {
includeAndroidResources true
}
}
lintOptions {
abortOnError false
disable 'MissingTranslation'
}
androidResources {
generateLocaleConfig true
}
packagingOptions {
resources {
excludes += "META-INF/LICENSE*"
excludes += "META-INF/versions/9/OSGI-INF/MANIFEST*"
pickFirst "MANIFEST.MF" // workaround for duplicated manifest on some dependencies
}
}
}
ext {
glideVersion = '4.16.0'
roomVersion = "2.7.2"
}
dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.5'
implementation 'com.google.guava:guava:33.4.8-jre'
implementation ('commons-httpclient:commons-httpclient:3.1') {
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation("com.github.nextcloud:android-library:2.21.0") {
exclude group: 'org.ogce', module: 'xpp3'
}
// Nextcloud SSO
implementation 'com.github.nextcloud.android-common:ui:1b779645b4ee2095ab133a8c939056eb13331453'
implementation 'com.github.nextcloud:Android-SingleSignOn:1.3.2'
implementation "com.github.stefan-niedermann.android-commons:shared-preferences:$androidCommonsVersion"
implementation "com.github.stefan-niedermann.android-commons:reactive-livedata:$androidCommonsVersion"
implementation "com.github.stefan-niedermann.android-commons:util:$androidCommonsVersion"
implementation "com.github.stefan-niedermann.nextcloud-commons:sso-glide:$commonsVersion"
implementation "com.github.stefan-niedermann.nextcloud-commons:exception:$commonsVersion"
implementation("com.github.stefan-niedermann.nextcloud-commons:markdown:$commonsVersion") {
exclude group: 'org.jetbrains', module: 'annotations-java5'
}
// Glide
implementation "com.github.bumptech.glide:glide:$glideVersion"
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
// Android X
implementation 'androidx.appcompat:appcompat:1.7.1'
implementation 'androidx.core:core-ktx:1.16.0'
implementation 'androidx.core:core-splashscreen:1.0.1'
implementation 'androidx.fragment:fragment:1.8.8'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1'
implementation 'androidx.preference:preference:1.2.1'
implementation 'androidx.recyclerview:recyclerview-selection:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.4.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.work:work-runtime:2.10.2'
implementation 'com.google.android.material:material:1.12.0'
// Database
implementation "androidx.room:room-runtime:${roomVersion}"
annotationProcessor "androidx.room:room-compiler:${roomVersion}"
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:3.0.0'
// Gson
implementation 'com.google.code.gson:gson:2.13.1'
// ReactiveX
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
// Testing
testImplementation 'androidx.test:core:1.6.1'
testImplementation 'androidx.arch.core:core-testing:2.2.0'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:5.18.0'
testImplementation 'org.robolectric:robolectric:4.15.1'
}