proton-mail-android/build.gradle.kts

60 lines
1.8 KiB
Plaintext
Raw Permalink Normal View History

2020-04-16 15:44:53 +00:00
/*
2022-02-28 15:15:59 +00:00
* Copyright (c) 2022 Proton AG
*
2022-02-28 15:15:59 +00:00
* This file is part of Proton Mail.
*
2022-02-28 15:15:59 +00:00
* Proton Mail is free software: you can redistribute it and/or modify
2020-04-16 15:44:53 +00:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
2022-02-28 15:15:59 +00:00
* Proton Mail is distributed in the hope that it will be useful,
2020-04-16 15:44:53 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
2020-04-16 15:44:53 +00:00
* You should have received a copy of the GNU General Public License
2022-02-28 15:15:59 +00:00
* along with Proton Mail. If not, see https://www.gnu.org/licenses/.
2020-04-16 15:44:53 +00:00
*/
2020-05-05 10:53:23 +00:00
2020-04-16 15:44:53 +00:00
buildscript {
initVersions()
2020-04-16 15:44:53 +00:00
repositories(repos)
dependencies(classpathDependencies)
}
// Room 2.3 use a jdbc not compatible with arm so use the updated one to support
// arm build. Room 2.4 should fix this issue (not stable yet)
allprojects {
configurations.all {
resolutionStrategy {
force("org.xerial:sqlite-jdbc:3.34.0")
}
}
}
2020-04-16 15:44:53 +00:00
plugins {
id("me.proton.kotlin") version "0.1" // Released: Oct 09, 2020
id("me.proton.tests") version "0.1" // Released: Oct 09, 2020
id("me.proton.core.gradle-plugins.detekt") version "1.1.2"
2020-05-05 10:53:23 +00:00
`sonarQube`
2020-04-16 15:44:53 +00:00
}
allprojects {
repositories(repos)
2020-04-16 15:44:53 +00:00
}
kotlinCompilerArgs(
"-Xuse-experimental=kotlin.Experimental",
// Enables unsigned types, like `UInt`, `ULong`, etc
"-Xopt-in=kotlin.ExperimentalUnsignedTypes",
// Enables experimental Coroutines from coroutines-test artifact, like `runBlockingTest`
"-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
// Enables experimental kotlin.time
"-Xopt-in=kotlin.time.ExperimentalTime"
)
2020-04-16 15:44:53 +00:00
tasks.register("clean", Delete::class.java) {
delete(rootProject.buildDir)
}