2024-03-05 19:28:30 +03:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2017-02-28 13:02:21 +03:00
|
|
|
apply plugin: 'com.android.application'
|
2023-02-01 14:40:44 +03:00
|
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
2017-02-28 13:02:21 +03:00
|
|
|
|
|
|
|
android {
|
2024-01-20 12:47:43 +03:00
|
|
|
compileSdk 34
|
|
|
|
namespace 'it.niedermann.owncloud.notes'
|
2018-12-29 19:46:03 +03:00
|
|
|
|
2017-02-28 13:02:21 +03:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "it.niedermann.owncloud.notes"
|
2024-01-20 12:47:43 +03:00
|
|
|
minSdk 24
|
|
|
|
targetSdk 34
|
2024-05-17 14:52:34 +03:00
|
|
|
versionCode 40040000
|
|
|
|
versionName "4.4.0 Alpha1"
|
2019-12-22 21:17:52 +03:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2020-10-05 14:02:38 +03:00
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
|
|
|
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
|
|
|
|
}
|
|
|
|
}
|
2017-02-28 13:02:21 +03:00
|
|
|
}
|
2020-03-18 11:47:42 +03:00
|
|
|
|
2024-01-20 12:47:43 +03:00
|
|
|
compileOptions {
|
|
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '17'
|
|
|
|
}
|
|
|
|
|
2020-06-22 14:59:07 +03:00
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
2024-01-20 12:47:43 +03:00
|
|
|
buildConfig true
|
2020-06-22 14:59:07 +03:00
|
|
|
}
|
|
|
|
|
2017-02-28 13:02:21 +03:00
|
|
|
buildTypes {
|
2020-05-07 22:38:34 +03:00
|
|
|
debug {
|
|
|
|
testCoverageEnabled true
|
|
|
|
}
|
|
|
|
|
2017-02-28 13:02:21 +03:00
|
|
|
release {
|
2021-04-09 09:48:37 +03:00
|
|
|
minifyEnabled false
|
2017-02-28 13:02:21 +03:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2020-03-18 11:47:42 +03:00
|
|
|
|
2024-01-28 20:57:32 +03:00
|
|
|
testCoverage.jacocoVersion = "0.8.8"
|
2020-02-25 19:23:19 +03:00
|
|
|
|
2024-01-21 17:43:50 +03:00
|
|
|
flavorDimensions = ["version"]
|
2020-03-18 11:47:42 +03:00
|
|
|
|
|
|
|
productFlavors {
|
|
|
|
fdroid {
|
|
|
|
dimension "version"
|
|
|
|
}
|
|
|
|
dev {
|
|
|
|
dimension "version"
|
|
|
|
applicationIdSuffix ".dev"
|
|
|
|
}
|
|
|
|
play {
|
|
|
|
dimension "version"
|
|
|
|
}
|
|
|
|
}
|
2021-04-08 20:42:11 +03:00
|
|
|
|
|
|
|
testOptions {
|
|
|
|
unitTests {
|
|
|
|
includeAndroidResources true
|
|
|
|
}
|
|
|
|
}
|
2024-01-20 12:47:43 +03:00
|
|
|
|
|
|
|
lintOptions {
|
2022-01-31 11:55:39 +03:00
|
|
|
abortOnError false
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2024-06-16 13:18:04 +03:00
|
|
|
|
|
|
|
androidResources {
|
|
|
|
generateLocaleConfig true
|
|
|
|
}
|
2017-02-28 13:02:21 +03:00
|
|
|
}
|
|
|
|
|
2023-01-26 20:30:28 +03:00
|
|
|
ext {
|
2023-08-22 04:14:23 +03:00
|
|
|
glideVersion = '4.16.0'
|
2024-01-20 12:47:43 +03:00
|
|
|
roomVersion = "2.6.1"
|
2023-01-26 20:30:28 +03:00
|
|
|
}
|
|
|
|
|
2017-02-28 13:02:21 +03:00
|
|
|
dependencies {
|
2024-01-20 12:47:43 +03:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
|
2021-05-25 16:06:24 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Nextcloud SSO
|
2024-06-13 22:48:28 +03:00
|
|
|
implementation 'com.github.nextcloud.android-common:ui:0.22.0'
|
2024-05-21 17:16:21 +03:00
|
|
|
implementation 'com.github.nextcloud:Android-SingleSignOn:1.2.0'
|
2024-01-21 11:51:23 +03:00
|
|
|
implementation 'com.github.stefan-niedermann:android-commons:1.0.0'
|
2023-04-17 12:30:25 +03:00
|
|
|
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") {
|
2021-10-18 14:12:20 +03:00
|
|
|
exclude group: 'org.jetbrains', module: 'annotations-java5'
|
|
|
|
}
|
2018-04-11 16:37:28 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Glide
|
2023-02-27 11:40:35 +03:00
|
|
|
implementation "com.github.bumptech.glide:glide:$glideVersion"
|
|
|
|
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
|
2020-10-11 18:20:25 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Android X
|
2024-05-29 22:20:09 +03:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
2024-05-16 22:03:20 +03:00
|
|
|
implementation 'androidx.core:core-ktx:1.13.1'
|
2023-04-21 05:02:21 +03:00
|
|
|
implementation 'androidx.core:core-splashscreen:1.0.1'
|
2024-07-24 23:54:51 +03:00
|
|
|
implementation 'androidx.fragment:fragment:1.8.2'
|
2024-07-24 23:46:00 +03:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4'
|
2023-07-27 04:26:22 +03:00
|
|
|
implementation 'androidx.preference:preference:1.2.1'
|
2021-04-02 20:25:32 +03:00
|
|
|
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
|
2023-12-02 16:13:48 +03:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.2'
|
2020-06-25 09:31:01 +03:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2024-01-20 12:47:43 +03:00
|
|
|
implementation 'androidx.work:work-runtime:2.9.0'
|
2024-05-16 22:28:22 +03:00
|
|
|
implementation 'com.google.android.material:material:1.12.0'
|
2018-04-11 16:37:28 +03:00
|
|
|
|
2020-06-10 09:23:53 +03:00
|
|
|
// Database
|
2023-01-26 20:30:28 +03:00
|
|
|
implementation "androidx.room:room-runtime:${roomVersion}"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:${roomVersion}"
|
2020-06-10 09:23:53 +03:00
|
|
|
|
2021-04-26 19:23:25 +03:00
|
|
|
// Retrofit
|
2024-03-28 23:39:38 +03:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
|
2021-04-26 19:23:25 +03:00
|
|
|
|
|
|
|
// Gson
|
2024-05-19 22:34:19 +03:00
|
|
|
implementation 'com.google.code.gson:gson:2.11.0'
|
2021-04-26 19:23:25 +03:00
|
|
|
|
2021-04-28 21:04:30 +03:00
|
|
|
// ReactiveX
|
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
|
2023-03-07 18:20:48 +03:00
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
2021-04-28 21:04:30 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Testing
|
2024-06-27 04:23:33 +03:00
|
|
|
testImplementation 'androidx.test:core:1.6.1'
|
2023-02-24 06:06:43 +03:00
|
|
|
testImplementation 'androidx.arch.core:core-testing:2.2.0'
|
2021-02-15 08:37:25 +03:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2024-05-11 16:08:01 +03:00
|
|
|
testImplementation 'org.mockito:mockito-core:5.12.0'
|
2024-07-08 07:19:08 +03:00
|
|
|
testImplementation 'org.robolectric:robolectric:4.13'
|
2017-02-28 13:02:21 +03:00
|
|
|
}
|