2017-02-28 13:02:21 +03:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2020-10-19 12:19:43 +03:00
|
|
|
compileSdkVersion 30
|
2021-01-05 07:04:53 +03:00
|
|
|
buildToolsVersion '30.0.3'
|
2017-02-28 13:02:21 +03:00
|
|
|
|
2018-12-29 19:46:03 +03:00
|
|
|
compileOptions {
|
2020-10-18 20:19:13 +03:00
|
|
|
coreLibraryDesugaringEnabled true
|
2021-07-29 17:49:12 +03:00
|
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
|
|
targetCompatibility JavaVersion.VERSION_11
|
2018-12-29 19:46:03 +03:00
|
|
|
}
|
|
|
|
|
2017-02-28 13:02:21 +03:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "it.niedermann.owncloud.notes"
|
2021-09-08 14:35:44 +03:00
|
|
|
minSdkVersion 22
|
2021-05-05 11:49:42 +03:00
|
|
|
targetSdkVersion 30
|
2021-10-15 10:31:27 +03:00
|
|
|
versionCode 3004016
|
|
|
|
versionName "3.4.16"
|
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
|
|
|
|
2020-06-22 14:59:07 +03:00
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-03-04 11:04:08 +03:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
abortOnError false
|
|
|
|
}
|
2020-02-25 19:23:19 +03:00
|
|
|
|
2020-03-18 11:47:42 +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"
|
|
|
|
}
|
2021-06-30 12:46:27 +03:00
|
|
|
mdm {
|
|
|
|
dimension "version"
|
|
|
|
applicationIdSuffix ".mdm"
|
|
|
|
}
|
2020-03-18 11:47:42 +03:00
|
|
|
}
|
2021-04-08 20:42:11 +03:00
|
|
|
|
|
|
|
testOptions {
|
|
|
|
unitTests {
|
|
|
|
includeAndroidResources true
|
|
|
|
}
|
|
|
|
}
|
2017-02-28 13:02:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-05-25 16:06:24 +03:00
|
|
|
// Markdown
|
|
|
|
implementation project(path: ':markdown')
|
|
|
|
|
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Nextcloud SSO
|
2021-05-25 16:06:24 +03:00
|
|
|
implementation 'com.github.nextcloud:Android-SingleSignOn:0.5.6'
|
2021-06-24 20:53:31 +03:00
|
|
|
implementation 'com.github.stefan-niedermann.nextcloud-commons:sso-glide:1.4.0'
|
|
|
|
implementation 'com.github.stefan-niedermann.nextcloud-commons:exception:1.4.0'
|
2020-12-22 15:19:16 +03:00
|
|
|
implementation 'com.github.stefan-niedermann:android-commons:0.2.0'
|
2018-04-11 16:37:28 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Glide
|
2021-04-30 11:09:44 +03:00
|
|
|
implementation 'com.github.bumptech.glide:glide:4.12.0'
|
2021-04-30 13:44:27 +03:00
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
|
2020-10-11 18:20:25 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Android X
|
2021-07-22 16:09:52 +03:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
2021-07-22 16:19:08 +03:00
|
|
|
implementation 'androidx.fragment:fragment:1.3.6'
|
2021-05-25 16:06:24 +03:00
|
|
|
implementation 'androidx.preference:preference:1.1.1'
|
2021-06-03 10:16:16 +03:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
2021-04-02 20:25:32 +03:00
|
|
|
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
|
2020-06-25 09:31:01 +03:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2021-09-02 16:12:10 +03:00
|
|
|
implementation 'androidx.work:work-runtime:2.6.0'
|
2021-07-05 16:12:50 +03:00
|
|
|
implementation 'com.google.android.material:material:1.4.0'
|
2018-04-11 16:37:28 +03:00
|
|
|
|
2020-06-10 09:23:53 +03:00
|
|
|
// Database
|
2021-05-25 16:06:24 +03:00
|
|
|
implementation 'androidx.room:room-runtime:2.3.0'
|
|
|
|
annotationProcessor 'androidx.room:room-compiler:2.3.0'
|
2020-06-10 09:23:53 +03:00
|
|
|
|
2021-04-26 19:23:25 +03:00
|
|
|
// Retrofit
|
2021-05-19 10:17:35 +03:00
|
|
|
//noinspection GradleDependency
|
2021-04-26 19:23:25 +03:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.6.4'
|
|
|
|
|
|
|
|
// Gson
|
2021-08-23 20:12:23 +03:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.8'
|
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'
|
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Testing
|
2021-07-01 16:08:46 +03:00
|
|
|
testImplementation 'androidx.test:core:1.4.0'
|
2021-05-30 16:23:07 +03:00
|
|
|
testImplementation 'androidx.arch.core:core-testing:2.1.0'
|
2021-02-15 08:37:25 +03:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2021-10-08 16:08:43 +03:00
|
|
|
testImplementation 'org.mockito:mockito-core:4.0.0'
|
2021-07-29 12:14:34 +03:00
|
|
|
testImplementation 'org.robolectric:robolectric:4.6.1'
|
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
|
|
|
}
|