aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2023-03-21 15:30:38 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2023-03-21 15:35:00 +0100
commita386e3a3d294ef7994a0b216ea867572581230e9 (patch)
treef9bfea003afbfb4641cf0c6b3b65175b7276b773
parenttools: bump deps (diff)
downloadwireguard-android-a386e3a3d294ef7994a0b216ea867572581230e9.tar.xz
wireguard-android-a386e3a3d294ef7994a0b216ea867572581230e9.zip
build: update to gradle 7.4.2 and restructure lint block
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--settings.gradle2
-rw-r--r--tunnel/build.gradle5
-rw-r--r--ui/build.gradle7
3 files changed, 6 insertions, 8 deletions
diff --git a/settings.gradle b/settings.gradle
index 2a030305..e6dd51a5 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,5 +1,5 @@
pluginManagement {
- def agpVersion = "7.4.0"
+ def agpVersion = '7.4.2'
def kotlinVersion = "1.8.0"
repositories {
gradlePluginPortal()
diff --git a/tunnel/build.gradle b/tunnel/build.gradle
index e1742f4c..da15770b 100644
--- a/tunnel/build.gradle
+++ b/tunnel/build.gradle
@@ -45,9 +45,8 @@ android {
}
}
}
- lintOptions {
- disable('LongLogTag')
- disable('NewApi') // Desugaring!
+ lint {
+ disable 'LongLogTag', 'NewApi'
}
}
diff --git a/ui/build.gradle b/ui/build.gradle
index e95d1779..94bbf786 100644
--- a/ui/build.gradle
+++ b/ui/build.gradle
@@ -56,10 +56,9 @@ android {
versionNameSuffix "-debug"
}
}
- lintOptions {
- disable('LongLogTag')
- warning('MissingTranslation')
- warning('ImpliedQuantity')
+ lint {
+ disable 'LongLogTag'
+ warning 'MissingTranslation', 'ImpliedQuantity'
}
}