2017-02-28 13:02:21 +03:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2020-01-18 13:30:06 +03:00
|
|
|
compileSdkVersion 29
|
|
|
|
buildToolsVersion '29.0.2'
|
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
|
2020-01-18 13:30:06 +03:00
|
|
|
targetSdkVersion 29
|
2020-02-19 22:23:53 +03:00
|
|
|
versionCode 81
|
|
|
|
versionName "2.10.3"
|
2019-12-22 21:17:52 +03:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
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
|
|
|
|
}
|
2017-02-28 13:02:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-02-19 22:23:53 +03:00
|
|
|
implementation "com.github.nextcloud:Android-SingleSignOn:0.5.0-rc3"
|
|
|
|
implementation 'com.github.stefan-niedermann:nextcloud-commons:0.0.2'
|
2019-10-03 20:39:12 +03:00
|
|
|
|
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-12-20 09:25:12 +03:00
|
|
|
implementation 'com.jakewharton:butterknife:10.2.1'
|
2019-12-20 11:32:24 +03:00
|
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'
|
2018-12-29 19:46:03 +03:00
|
|
|
|
2019-09-10 23:08:29 +03:00
|
|
|
implementation "androidx.appcompat:appcompat:1.1.0"
|
2020-02-20 09:53:05 +03:00
|
|
|
implementation "androidx.fragment:fragment:1.2.2"
|
2020-02-05 22:43:55 +03:00
|
|
|
implementation "androidx.preference:preference:1.1.0"
|
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-02-20 09:28:09 +03:00
|
|
|
implementation 'androidx.work:work-runtime:2.3.2'
|
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-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'
|
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
|
|
|
}
|