proton-mail-android/buildSrc/src/main/kotlin/ProtonMail.kt

37 lines
1.0 KiB
Kotlin
Raw Normal View History

import org.gradle.api.JavaVersion
2020-04-16 15:44:53 +00:00
/*
2022-02-28 15:15:59 +00:00
* Copyright (c) 2022 Proton AG
2020-09-17 09:47:11 +00:00
*
2022-02-28 15:15:59 +00:00
* This file is part of Proton Mail.
2020-09-17 09:47:11 +00:00
*
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.
2020-09-17 09:47:11 +00:00
*
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-09-17 09:47:11 +00:00
*
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
*/
/**
* Params for the Application and various modules
* @author Davide Farella
*/
object ProtonMail {
const val versionName = "3.0.11"
const val versionCode = 927
2020-04-16 15:44:53 +00:00
2022-11-21 13:44:27 +00:00
const val compileSdk = 33
const val targetSdk = 31
2021-04-19 12:39:40 +00:00
const val minSdk = 23
val jvmTarget = JavaVersion.VERSION_11
2020-04-16 15:44:53 +00:00
}