nextcloud-notes-android/app/build.gradle

146 lines
4.2 KiB
Groovy
Raw Normal View History

/*
* 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'
apply plugin: 'org.jetbrains.kotlin.android'
2017-02-28 13:02:21 +03:00
android {
compileSdk 34
namespace 'it.niedermann.owncloud.notes'
2017-02-28 13:02:21 +03:00
defaultConfig {
applicationId "it.niedermann.owncloud.notes"
minSdk 24
targetSdk 34
versionCode 40040000
versionName "4.4.0 Alpha1"
2019-12-22 21:17:52 +03:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
2017-02-28 13:02:21 +03:00
}
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
buildFeatures {
viewBinding true
buildConfig true
}
2017-02-28 13:02:21 +03:00
buildTypes {
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'
}
}
testCoverage.jacocoVersion = "0.8.8"
2020-02-25 19:23:19 +03:00
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
}
2017-02-28 13:02:21 +03:00
}
ext {
glideVersion = '4.16.0'
roomVersion = "2.6.1"
}
2017-02-28 13:02:21 +03:00
dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
2020-03-25 16:01:23 +03:00
// Nextcloud SSO
implementation 'com.github.nextcloud.android-common:ui:0.22.0'
implementation 'com.github.nextcloud:Android-SingleSignOn:1.2.0'
implementation 'com.github.stefan-niedermann:android-commons:1.0.0'
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'
}
2020-03-25 16:01:23 +03:00
// Glide
implementation "com.github.bumptech.glide:glide:$glideVersion"
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
2020-03-25 16:01:23 +03:00
// Android X
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.core:core-splashscreen:1.0.1'
implementation 'androidx.fragment:fragment:1.8.2'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4'
implementation 'androidx.preference:preference:1.2.1'
2021-04-02 20:25:32 +03:00
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.work:work-runtime:2.9.0'
implementation 'com.google.android.material:material:1.12.0'
2020-06-10 09:23:53 +03:00
// Database
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
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
2021-04-26 19:23:25 +03:00
// Gson
implementation 'com.google.code.gson:gson:2.11.0'
2021-04-26 19:23:25 +03:00
// ReactiveX
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
Support direct editing for notes (#1686) * feat(capabilities): Fetch and store direct editing capability using existing capabilities code Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * feat: Implement direct editing repo Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * wip: Edit note with webview Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * wip: allow switching between the three note opening modes in preferences Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * EditNoteActivity: if no setting, use plain edit, not direct edit Required by UX team Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * feat: Add FAB to switch to rich editing mode from plain edit/preview Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * feat: add fab while direct editing to switch to normal editing Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * Fix toolbar when switching between direct edit and normal edit Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * wip: error and conflict handling when switching edit modes Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * Only show direct editing FAB if direct editing is available Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * EditNoteActivity: if pref is direct edit but it's not available, launch normal edit instead Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * Show error if direct editing not loaded after 10 seconds Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * Update user agent for Notes webview Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * Support opening new notes with direct editing Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * Allow invalid ssl certs for debug builds in webview Development only! Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * NoteDirectEdit: prevent duplicate note creation when creating it with direct edit remote id needs to be set Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> * Fix create with plain edit -> direct edit flow Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com> --------- Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
2023-03-07 18:20:48 +03:00
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
2020-03-25 16:01:23 +03:00
// 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.12.0'
testImplementation 'org.robolectric:robolectric:4.13'
2017-02-28 13:02:21 +03:00
}