aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorLena <lena@omega>2026-08-01 00:00:00 +0000
committerLena <lena@omega>2026-08-01 00:00:00 +0000
commit827653aa291e37ae63c0cfa1eee4fbaa20cea122 (patch)
tree20f874004e1676b055bc695d3b1483bef9932fe7 /build.gradle
parentdcda3f64e0822554f647ec73fa8b0252268b87a0 (diff)
downloadscrcpy-android-827653aa291e37ae63c0cfa1eee4fbaa20cea122.tar.gz
build: pin and verify release inputs
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
1 files changed, 8 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 9da7691..0265eec 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,4 +1,10 @@
plugins {
- id 'com.android.application' version '8.7.3' apply false
- id 'com.android.library' version '8.7.3' apply false
+ id 'com.android.application' version '8.13.2' apply false
+ id 'com.android.library' version '8.13.2' apply false
+}
+
+subprojects {
+ tasks.withType(JavaCompile).configureEach {
+ options.compilerArgs += ['-Xlint:deprecation', '-Xlint:unchecked']
+ }
}