From 8e71dd9e82ddd02f8e726d38eda179fe996c55d6 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 12 Apr 2016 17:43:39 +0200 Subject: [PATCH] android: Get a warning on use of deprecated features --- src/frontends/android/app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontends/android/app/build.gradle b/src/frontends/android/app/build.gradle index d27ba1edd9..9ef7d171cf 100644 --- a/src/frontends/android/app/build.gradle +++ b/src/frontends/android/app/build.gradle @@ -29,6 +29,7 @@ android { tasks.withType(JavaCompile) { compileTask -> compileTask.dependsOn buildNative + options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" } clean.dependsOn 'cleanNative' -- 2.47.2