1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-11-07 18:53:58 +00:00

Silence warnings regarding new annotation property behavior

Ref: https://kotlinlang.org/docs/annotations.html#defaults-when-no-use-site-targets-are-specified

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2025-11-05 12:48:08 +08:00
parent 49a4b4acf1
commit fc5c8baf90

View File

@@ -22,6 +22,14 @@ java {
}
}
kotlin {
compilerOptions {
freeCompilerArgs.addAll(
"-Xannotation-default-target=param-property"
)
}
}
android {
compileSdk = 36
namespace = "org.schabi.newpipe"