mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-22 04:46:04 +03:00
5d3d4d1223
Bumps [mockito-core](https://github.com/mockito/mockito) from 3.12.2 to 3.12.3. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v3.12.2...v3.12.3) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
125 lines
3.5 KiB
Groovy
125 lines
3.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion '30.0.3'
|
|
|
|
compileOptions {
|
|
coreLibraryDesugaringEnabled true
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "it.niedermann.owncloud.notes"
|
|
minSdkVersion 21
|
|
targetSdkVersion 30
|
|
versionCode 3004011
|
|
versionName "3.4.11"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
javaCompileOptions {
|
|
annotationProcessorOptions {
|
|
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
|
|
}
|
|
}
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
testCoverageEnabled true
|
|
}
|
|
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
abortOnError false
|
|
}
|
|
|
|
flavorDimensions "version"
|
|
|
|
productFlavors {
|
|
fdroid {
|
|
dimension "version"
|
|
}
|
|
dev {
|
|
dimension "version"
|
|
applicationIdSuffix ".dev"
|
|
}
|
|
play {
|
|
dimension "version"
|
|
}
|
|
pfungstadt {
|
|
dimension "version"
|
|
applicationIdSuffix ".pfungstadt"
|
|
}
|
|
mdm {
|
|
dimension "version"
|
|
applicationIdSuffix ".mdm"
|
|
}
|
|
}
|
|
|
|
testOptions {
|
|
unitTests {
|
|
includeAndroidResources true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Markdown
|
|
implementation project(path: ':markdown')
|
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
|
|
|
// Nextcloud SSO
|
|
implementation 'com.github.nextcloud:Android-SingleSignOn:0.5.6'
|
|
implementation 'com.github.stefan-niedermann.nextcloud-commons:sso-glide:1.4.0'
|
|
implementation 'com.github.stefan-niedermann.nextcloud-commons:exception:1.4.0'
|
|
implementation 'com.github.stefan-niedermann:android-commons:0.2.0'
|
|
|
|
// Glide
|
|
implementation 'com.github.bumptech.glide:glide:4.12.0'
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
|
|
|
|
// Android X
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
|
implementation 'androidx.fragment:fragment:1.3.6'
|
|
implementation 'androidx.preference:preference:1.1.1'
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
|
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
implementation 'androidx.work:work-runtime:2.5.0'
|
|
implementation 'com.google.android.material:material:1.4.0'
|
|
|
|
// Database
|
|
implementation 'androidx.room:room-runtime:2.3.0'
|
|
annotationProcessor 'androidx.room:room-compiler:2.3.0'
|
|
|
|
// Retrofit
|
|
//noinspection GradleDependency
|
|
implementation 'com.squareup.retrofit2:retrofit:2.6.4'
|
|
|
|
// Gson
|
|
implementation 'com.google.code.gson:gson:2.8.8'
|
|
|
|
// ReactiveX
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
|
|
|
|
// Testing
|
|
testImplementation 'androidx.test:core:1.4.0'
|
|
testImplementation 'androidx.arch.core:core-testing:2.1.0'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
testImplementation 'org.mockito:mockito-core:3.12.3'
|
|
testImplementation 'org.robolectric:robolectric:4.6.1'
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
}
|