2017-02-28 13:02:21 +03:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-11-27 22:47:02 +03:00
|
|
|
compileSdkVersion 28
|
2019-08-29 21:30:40 +03:00
|
|
|
buildToolsVersion '29.0.1'
|
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"
|
2017-08-31 17:19:03 +03:00
|
|
|
minSdkVersion 14
|
2018-11-27 22:47:02 +03:00
|
|
|
targetSdkVersion 28
|
2019-10-03 18:24:42 +03:00
|
|
|
versionCode 48
|
|
|
|
versionName "1.0.0"
|
2017-02-28 13:02:21 +03:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2017-03-04 11:04:08 +03:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
abortOnError false
|
|
|
|
}
|
2019-10-02 22:13:24 +03:00
|
|
|
dataBinding {
|
|
|
|
enabled = true
|
|
|
|
}
|
2017-02-28 13:02:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-10-03 20:39:12 +03:00
|
|
|
implementation 'com.github.nextcloud:Android-SingleSignOn:master-SNAPSHOT'
|
|
|
|
|
2019-02-06 22:51:05 +03:00
|
|
|
implementation 'io.reactivex:rxandroid:1.2.1'
|
|
|
|
implementation 'io.reactivex:rxjava:1.3.8'
|
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
|
|
|
|
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'
|
|
|
|
|
2019-09-14 19:16:29 +03:00
|
|
|
implementation 'com.jakewharton:butterknife:10.2.0'
|
2019-09-14 19:16:49 +03:00
|
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.0'
|
2018-12-29 19:46:03 +03:00
|
|
|
|
2019-09-10 23:08:29 +03:00
|
|
|
implementation "androidx.appcompat:appcompat:1.1.0"
|
2018-12-29 19:46:03 +03:00
|
|
|
implementation "androidx.recyclerview:recyclerview:1.0.0"
|
|
|
|
implementation "com.google.android.material:material:1.0.0"
|
2018-04-11 16:37:28 +03:00
|
|
|
|
2018-04-06 21:36:35 +03:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2017-02-28 13:02:21 +03:00
|
|
|
}
|