summaryrefslogtreecommitdiffstats
path: root/mobile/android/annotations/build.gradle
blob: aa531dd0a9cd09860ff01e7c06c3ec1ed3954d56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
}

java {
    sourceCompatibility = JavaVersion.VERSION_17
    targetCompatibility = JavaVersion.VERSION_17
}