Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/mumla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Lublin <daniel@lublin.se>2020-05-09 12:54:53 +0300
committerDaniel Lublin <daniel@lublin.se>2020-05-09 12:55:45 +0300
commitfa7367189570ecca3f45230f5e1ce8ba22acf108 (patch)
tree37c2d213b956900d75387dff4e1534606800b795
parent443bb1c124e6f5ab1c0d2e5ca195eddad613b32b (diff)
gradle: relocate allprojects lint
-rw-r--r--app/build.gradle14
m---------libraries/humla0
2 files changed, 7 insertions, 7 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 2782bf9..cafd10b 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -15,13 +15,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-allprojects {
- tasks.withType(JavaCompile) {
- // TODO include deprecations at some point, but currently they are *many*
- options.compilerArgs << "-Xlint:all" << "-Xlint:-deprecation" << "-Xlint:-dep-ann"
- }
-}
-
buildscript {
repositories {
jcenter()
@@ -52,6 +45,13 @@ if (signingFile.exists()) apply from: signingFile
def signingBetaFile = file 'signing-beta.gradle'
if (signingBetaFile.exists()) apply from: signingBetaFile
+allprojects {
+ tasks.withType(JavaCompile) {
+ // TODO include deprecations at some point, but currently they are *many*
+ options.compilerArgs << "-Xlint:all" << "-Xlint:-deprecation" << "-Xlint:-dep-ann"
+ }
+}
+
android {
compileSdkVersion 29
buildToolsVersion '29.0.3'
diff --git a/libraries/humla b/libraries/humla
-Subproject 74b0d4d36d9e03c3df09a817a10e1686f8914a2
+Subproject 30e3a5c3944a315d6286f453dfbc331092ea545