e5d178ea3c
* Work around incompatibility between AndroidFastScroll and recyclerview-selection * move hacked recyclerview into separate package Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * Make RecyclerViewHelper private static Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
32 lines
880 B
Groovy
32 lines
880 B
Groovy
/*
|
|
* Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
apply plugin: 'com.diffplug.gradle.spotless'
|
|
|
|
spotless {
|
|
format 'xml', {
|
|
target '**/src/**/*.xml'
|
|
indentWithSpaces(4)
|
|
trimTrailingWhitespace()
|
|
endWithNewline()
|
|
}
|
|
|
|
java {
|
|
target '**/src/**/com/zeapo/pwdstore/*.java'
|
|
trimTrailingWhitespace()
|
|
licenseHeaderFile rootProject.file('spotless.license')
|
|
removeUnusedImports()
|
|
googleJavaFormat().aosp()
|
|
endWithNewline()
|
|
}
|
|
|
|
kotlin {
|
|
target '**/src/**/*.kt'
|
|
ktlint('0.35.0').userData(['indent_size': '4', 'continuation_indent_size': '8'])
|
|
licenseHeaderFile rootProject.file('spotless.license')
|
|
trimTrailingWhitespace()
|
|
indentWithSpaces()
|
|
endWithNewline()
|
|
}
|
|
}
|