blob: 59afd140289ff8b67f41949b183c0e45615a77d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
buildDir "${topobjdir}/gradle/build/mobile/android/annotations"
apply plugin: 'java'
// lint should be X+23.Y.Z of gradle_plugin version, according to:
// http://googlesamples.github.io/android-custom-lint-rules/api-guide.html#example:samplelintcheckgithubproject/lintversion?
dependencies {
implementation 'com.android.tools.lint:lint:30.4.2'
implementation 'com.android.tools.lint:lint-checks:30.4.2'
}
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
|