diff options
| author | Lena <lena@omega> | 2026-08-01 00:00:00 +0000 |
|---|---|---|
| committer | Lena <lena@omega> | 2026-08-01 00:00:00 +0000 |
| commit | 827653aa291e37ae63c0cfa1eee4fbaa20cea122 (patch) | |
| tree | 20f874004e1676b055bc695d3b1483bef9932fe7 /build.gradle | |
| parent | dcda3f64e0822554f647ec73fa8b0252268b87a0 (diff) | |
| download | scrcpy-android-827653aa291e37ae63c0cfa1eee4fbaa20cea122.tar.gz | |
build: pin and verify release inputs
Diffstat (limited to 'build.gradle')
| -rw-r--r-- | build.gradle | 10 |
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'] + } } |