mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-24 05:46:14 +03:00
1d5e8ec26f
Bumps [butterknife-compiler](https://github.com/JakeWharton/butterknife) from 10.2.0 to 10.2.1. - [Release notes](https://github.com/JakeWharton/butterknife/releases) - [Changelog](https://github.com/JakeWharton/butterknife/blob/master/CHANGELOG.md) - [Commits](https://github.com/JakeWharton/butterknife/compare/10.2.0...10.2.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
54 lines
1.6 KiB
Groovy
54 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion '29.0.1'
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "it.niedermann.owncloud.notes"
|
|
minSdkVersion 14
|
|
targetSdkVersion 28
|
|
versionCode 52
|
|
versionName "2.0.2"
|
|
// vectorDrawables.useSupportLibrary = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
abortOnError false
|
|
}
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.github.nextcloud:Android-SingleSignOn:0.5.0-rc1"
|
|
|
|
implementation 'io.reactivex:rxandroid:1.2.1'
|
|
implementation 'io.reactivex:rxjava:1.3.8'
|
|
implementation 'com.yydcdut:markdown-processor:0.1.3'
|
|
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.3'
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.10.0'
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
|
|
|
|
implementation 'com.jakewharton:butterknife:10.2.1'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'
|
|
|
|
implementation "androidx.appcompat:appcompat:1.1.0"
|
|
implementation "androidx.recyclerview:recyclerview:1.1.0"
|
|
implementation "com.google.android.material:material:1.0.0"
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
}
|