nextcloud-notes-android/app/build.gradle
dependabot[bot] 23aa751ecf Bump compiler from 4.14.0 to 4.14.1
Bumps [compiler](https://github.com/bumptech/glide) from 4.14.0 to 4.14.1.
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](https://github.com/bumptech/glide/compare/v4.14.0...v4.14.1)

---
updated-dependencies:
- dependency-name: com.github.bumptech.glide:compiler
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-30 15:26:32 +02:00

127 lines
3.7 KiB
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 33
buildToolsVersion '31.0.0'
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
defaultConfig {
applicationId "it.niedermann.owncloud.notes"
minSdkVersion 23
targetSdkVersion 33
versionCode 3006000
versionName "3.6.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
}
buildFeatures {
viewBinding true
}
buildTypes {
debug {
testCoverageEnabled true
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
flavorDimensions "version"
productFlavors {
fdroid {
dimension "version"
}
dev {
dimension "version"
applicationIdSuffix ".dev"
}
play {
dimension "version"
}
pfungstadt {
dimension "version"
applicationIdSuffix ".pfungstadt"
}
mdm {
dimension "version"
applicationIdSuffix ".mdm"
}
}
testOptions {
unitTests {
includeAndroidResources true
}
}
lint {
abortOnError false
disable 'MissingTranslation'
}
namespace 'it.niedermann.owncloud.notes'
}
dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.6'
// Nextcloud SSO
implementation 'com.github.nextcloud:Android-SingleSignOn:0.6.1'
implementation 'com.github.stefan-niedermann:android-commons:0.2.7'
implementation 'com.github.stefan-niedermann.nextcloud-commons:sso-glide:1.6.4'
implementation 'com.github.stefan-niedermann.nextcloud-commons:exception:1.6.4'
implementation('com.github.stefan-niedermann.nextcloud-commons:markdown:1.6.4') {
exclude group: 'org.jetbrains', module: 'annotations-java5'
}
// Glide
implementation 'com.github.bumptech.glide:glide:4.14.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.14.1'
// Android X
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.core:core-splashscreen:1.0.0'
implementation 'androidx.fragment:fragment:1.5.3'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.preference:preference:1.2.0'
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.work:work-runtime:2.7.1'
implementation 'com.google.android.material:material:1.6.1'
// Database
implementation 'androidx.room:room-runtime:2.4.3'
annotationProcessor 'androidx.room:room-compiler:2.4.3'
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
// Gson
implementation 'com.google.code.gson:gson:2.9.1'
// ReactiveX
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
// Testing
testImplementation 'androidx.test:core:1.4.0'
testImplementation 'androidx.arch.core:core-testing:2.1.0'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:4.8.0'
testImplementation 'org.robolectric:robolectric:4.8.2'
implementation fileTree(dir: 'libs', include: ['*.jar'])
}