0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-16 03:05:06 +00:00

android: enable deprecation warnings

This commit is contained in:
Sigrid Solveig Haflínudóttir 2022-01-01 19:46:58 +01:00
parent a00a17badd
commit 5137db7df0

View file

@ -1,5 +1,14 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.deprecation = true
}
}
}
buildscript {
repositories {
mavenCentral()