2017-02-28 13:02:21 +03:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2020-01-18 13:30:06 +03:00
|
|
|
compileSdkVersion 29
|
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
|
|
|
|
}
|
|
|
|
|
2017-02-28 13:02:21 +03:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "it.niedermann.owncloud.notes"
|
2020-04-14 18:47:26 +03:00
|
|
|
minSdkVersion 16
|
2020-01-18 13:30:06 +03:00
|
|
|
targetSdkVersion 29
|
2020-05-18 08:51:01 +03:00
|
|
|
versionCode 2012001
|
|
|
|
versionName "2.12.1"
|
2019-12-22 21:17:52 +03:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2017-02-28 13:02:21 +03:00
|
|
|
}
|
2020-03-18 11:47:42 +03:00
|
|
|
|
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
|
|
|
|
|
|
|
viewBinding {
|
|
|
|
enabled = true
|
|
|
|
}
|
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-03-14 01:04:38 +03:00
|
|
|
implementation "com.github.nextcloud:Android-SingleSignOn:0.5.0"
|
2019-10-03 20:39:12 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Markdown
|
2018-08-13 21:41:34 +03:00
|
|
|
implementation 'com.yydcdut:markdown-processor:0.1.3'
|
|
|
|
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.3'
|
2018-04-11 16:37:28 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Glide
|
2019-09-21 22:42:02 +03:00
|
|
|
implementation 'com.github.bumptech.glide:glide:4.10.0'
|
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
|
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Android X
|
2019-09-10 23:08:29 +03:00
|
|
|
implementation "androidx.appcompat:appcompat:1.1.0"
|
2020-04-02 09:34:05 +03:00
|
|
|
implementation "androidx.fragment:fragment:1.2.4"
|
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-02-05 22:43:55 +03:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
|
2020-03-19 09:33:29 +03:00
|
|
|
implementation 'androidx.work:work-runtime:2.3.4'
|
2020-02-04 20:15:25 +03:00
|
|
|
implementation "com.google.android.material:material:1.1.0"
|
2018-04-11 16:37:28 +03:00
|
|
|
|
2020-03-25 16:01:23 +03:00
|
|
|
// Testing
|
2020-02-23 19:51:09 +03:00
|
|
|
testImplementation 'junit:junit:4.13'
|
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-04-19 00:18:24 +03:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.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
|
|
|
}
|