mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-21 20:35:58 +03:00
066e5c1b7d
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
132 lines
3.9 KiB
Groovy
132 lines
3.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
android {
|
|
compileSdk 34
|
|
namespace 'it.niedermann.owncloud.notes'
|
|
|
|
defaultConfig {
|
|
applicationId "it.niedermann.owncloud.notes"
|
|
minSdk 24
|
|
targetSdk 34
|
|
versionCode 40020000
|
|
versionName "4.2.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.8"
|
|
|
|
flavorDimensions = ["version"]
|
|
|
|
productFlavors {
|
|
fdroid {
|
|
dimension "version"
|
|
}
|
|
dev {
|
|
dimension "version"
|
|
applicationIdSuffix ".dev"
|
|
}
|
|
play {
|
|
dimension "version"
|
|
}
|
|
}
|
|
|
|
testOptions {
|
|
unitTests {
|
|
includeAndroidResources true
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
disable 'MissingTranslation'
|
|
}
|
|
}
|
|
|
|
ext {
|
|
glideVersion = '4.16.0'
|
|
roomVersion = "2.6.1"
|
|
}
|
|
|
|
dependencies {
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
|
|
|
|
// Nextcloud SSO
|
|
implementation 'com.github.nextcloud.android-common:ui:0.14.0'
|
|
implementation 'com.github.nextcloud:Android-SingleSignOn:1.0.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'
|
|
}
|
|
|
|
// Glide
|
|
implementation "com.github.bumptech.glide:glide:$glideVersion"
|
|
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
|
|
|
|
// Android X
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'androidx.core:core-ktx:1.12.0'
|
|
implementation 'androidx.core:core-splashscreen:1.0.1'
|
|
implementation 'androidx.fragment:fragment:1.6.2'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0'
|
|
implementation 'androidx.preference:preference:1.2.1'
|
|
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.11.0'
|
|
|
|
// Database
|
|
implementation "androidx.room:room-runtime:${roomVersion}"
|
|
annotationProcessor "androidx.room:room-compiler:${roomVersion}"
|
|
|
|
// Retrofit
|
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
|
|
|
// Gson
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
|
|
// ReactiveX
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
|
|
|
// Testing
|
|
testImplementation 'androidx.test:core:1.5.0'
|
|
testImplementation 'androidx.arch.core:core-testing:2.2.0'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
testImplementation 'org.mockito:mockito-core:5.10.0'
|
|
testImplementation 'org.robolectric:robolectric:4.11.1'
|
|
}
|