2017-02-28 13:02:21 +03:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2020-10-19 12:19:43 +03:00
|
|
|
compileSdkVersion 30
|
2020-03-25 16:01:23 +03:00
|
|
|
buildToolsVersion '29.0.3'
|
2017-02-28 13:02:21 +03:00
|
|
|
|
2018-12-29 19:46:03 +03:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
2020-10-18 20:19:13 +03:00
|
|
|
coreLibraryDesugaringEnabled true
|
2018-12-29 19:46:03 +03:00
|
|
|
}
|
|
|
|
|
2017-02-28 13:02:21 +03:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "it.niedermann.owncloud.notes"
|
2020-10-08 22:10:31 +03:00
|
|
|
minSdkVersion 18
|
2020-10-18 20:19:43 +03:00
|
|
|
targetSdkVersion 30
|
2020-10-10 00:39:28 +03:00
|
|
|
versionCode 2017001
|
|
|
|
versionName "2.17.1"
|
2020-10-11 18:49:41 +03:00
|
|
|
multiDexEnabled true
|
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 {
|
|
|
|
minifyEnabled false
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|
2017-02-28 13:02:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-03-25 16:01:23 +03:00
|
|
|
// Nextcloud SSO
|
2020-10-11 18:20:25 +03:00
|
|
|
implementation "com.github.nextcloud:Android-SingleSignOn:0.5.3"
|
2020-10-14 18:31:43 +03:00
|
|
|
implementation 'com.github.stefan-niedermann.nextcloud-commons:sso-glide:1.2.0'
|
|
|
|
implementation 'com.github.stefan-niedermann.nextcloud-commons:exception:1.2.0'
|
|
|
|
implementation 'com.github.stefan-niedermann:android-commons:0.0.9'
|
2018-04-11 16:37:28 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Glide
|
2020-06-01 15:11:45 +03:00
|
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
|
2020-10-11 18:20:25 +03:00
|
|
|
|
|
|
|
// Markdown
|
|
|
|
implementation 'com.yydcdut:markdown-processor:0.1.3'
|
|
|
|
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.3'
|
2019-09-21 22:42:02 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Android X
|
2020-08-06 09:21:18 +03:00
|
|
|
implementation "androidx.appcompat:appcompat:1.2.0"
|
2020-06-11 09:29:55 +03:00
|
|
|
implementation "androidx.fragment:fragment:1.2.5"
|
2020-04-16 09:29:19 +03:00
|
|
|
implementation "androidx.preference:preference:1.1.1"
|
2019-12-06 10:35:56 +03:00
|
|
|
implementation "androidx.recyclerview:recyclerview:1.1.0"
|
2020-10-19 12:19:43 +03:00
|
|
|
implementation 'androidx.recyclerview:recyclerview-selection:1.0.0'
|
2020-06-25 09:31:01 +03:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2020-07-23 09:28:35 +03:00
|
|
|
implementation 'androidx.work:work-runtime:2.4.0'
|
2020-09-03 08:43:17 +03:00
|
|
|
implementation "com.google.android.material:material:1.2.1"
|
2018-04-11 16:37:28 +03:00
|
|
|
|
2020-06-10 09:23:53 +03:00
|
|
|
// Database
|
|
|
|
implementation "androidx.room:room-runtime:2.2.5"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:2.2.5"
|
|
|
|
|
2020-10-11 18:49:41 +03:00
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2020-10-18 20:19:13 +03:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.10'
|
2020-10-11 18:49:41 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Testing
|
2020-10-12 08:49:46 +03:00
|
|
|
testImplementation 'junit:junit:4.13.1'
|
2020-01-19 10:40:57 +03:00
|
|
|
androidTestImplementation 'com.android.support:support-annotations:28.0.0'
|
|
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
2020-08-26 11:02:54 +03:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.3.0'
|
2020-08-26 10:38:45 +03:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
2020-08-26 08:43:59 +03:00
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
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
|
|
|
}
|