Explorar el Código

Added strict option for kotlin compiler

sirekanian hace 3 años
padre
commit
69fffbee7a
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      app/build.gradle.kts

+ 3 - 0
app/build.gradle.kts

@@ -39,6 +39,9 @@ android {
         sourceCompatibility = JavaVersion.VERSION_1_8
         targetCompatibility = JavaVersion.VERSION_1_8
     }
+    kotlinOptions {
+        allWarningsAsErrors = true
+    }
     lint {
         warningsAsErrors = true
     }