mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-23 05:16:15 +03:00
59 lines
1.9 KiB
Groovy
59 lines
1.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion '29.0.2'
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "it.niedermann.owncloud.notes"
|
|
minSdkVersion 14
|
|
targetSdkVersion 29
|
|
versionCode 81
|
|
versionName "2.10.3"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
abortOnError false
|
|
}
|
|
|
|
viewBinding {
|
|
enabled = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.github.nextcloud:Android-SingleSignOn:0.5.0-rc3"
|
|
implementation 'com.github.stefan-niedermann:nextcloud-commons:0.0.2'
|
|
|
|
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 "androidx.appcompat:appcompat:1.1.0"
|
|
implementation "androidx.fragment:fragment:1.2.2"
|
|
implementation "androidx.preference:preference:1.1.0"
|
|
implementation "androidx.recyclerview:recyclerview:1.1.0"
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
|
|
implementation 'androidx.work:work-runtime:2.3.2'
|
|
implementation "com.google.android.material:material:1.1.0"
|
|
|
|
testImplementation 'junit:junit:4.13'
|
|
androidTestImplementation 'com.android.support:support-annotations:28.0.0'
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
}
|