nextcloud-notes-android/app/build.gradle

125 lines
3.5 KiB
Groovy
Raw Normal View History

2017-02-28 13:02:21 +03:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 31
buildToolsVersion '31.0.0'
2017-02-28 13:02:21 +03:00
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
2017-02-28 13:02:21 +03:00
defaultConfig {
applicationId "it.niedermann.owncloud.notes"
minSdkVersion 23
targetSdkVersion 31
versionCode 3004018
versionName "3.4.18"
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
}
buildFeatures {
viewBinding 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'
}
}
2020-02-25 19:23:19 +03:00
flavorDimensions "version"
productFlavors {
fdroid {
dimension "version"
}
dev {
dimension "version"
applicationIdSuffix ".dev"
}
play {
dimension "version"
}
2021-03-10 19:55:10 +03:00
pfungstadt {
dimension "version"
applicationIdSuffix ".pfungstadt"
}
mdm {
dimension "version"
applicationIdSuffix ".mdm"
}
}
testOptions {
unitTests {
includeAndroidResources true
}
}
lint {
abortOnError false
disable 'MissingTranslation'
}
2017-02-28 13:02:21 +03:00
}
dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
2020-03-25 16:01:23 +03:00
// Nextcloud SSO
implementation 'com.github.nextcloud:Android-SingleSignOn:0.6.1'
implementation 'com.github.stefan-niedermann:android-commons:0.2.5'
implementation 'com.github.stefan-niedermann.nextcloud-commons:sso-glide:1.6.2'
implementation 'com.github.stefan-niedermann.nextcloud-commons:exception:1.6.2'
implementation('com.github.stefan-niedermann.nextcloud-commons:markdown:1.6.2') {
exclude group: 'org.jetbrains', module: 'annotations-java5'
}
2020-03-25 16:01:23 +03:00
// Glide
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
2020-03-25 16:01:23 +03:00
// Android X
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.fragment:fragment:1.4.1'
implementation 'androidx.preference:preference:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
2021-04-02 20:25:32 +03:00
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.work:work-runtime:2.7.1'
implementation 'com.google.android.material:material:1.5.0'
2020-06-10 09:23:53 +03:00
// Database
implementation 'androidx.room:room-runtime:2.4.1'
annotationProcessor 'androidx.room:room-compiler:2.4.1'
2020-06-10 09:23:53 +03:00
2021-04-26 19:23:25 +03:00
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
2021-04-26 19:23:25 +03:00
// Gson
implementation 'com.google.code.gson:gson:2.8.9'
2021-04-26 19:23:25 +03:00
// ReactiveX
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
2020-03-25 16:01:23 +03:00
// 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.3.1'
testImplementation 'org.robolectric:robolectric:4.7.3'
2019-12-22 21:17:52 +03:00
2018-04-06 21:36:35 +03:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
2017-02-28 13:02:21 +03:00
}