mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 10:46:53 -04:00
36 lines
1.5 KiB
Kotlin
36 lines
1.5 KiB
Kotlin
/*
|
|
* Kiwix Android
|
|
* Copyright (c) 2019 Kiwix <android.kiwix.org>
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* 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.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
import org.gradle.api.JavaVersion
|
|
|
|
object Config {
|
|
|
|
// Here is a list of all Android versions with their corresponding API
|
|
// levels: https://apilevels.com/
|
|
const val compileSdk = 36 // SDK version used by Gradle to compile our app.
|
|
const val minSdk = 25 // Minimum SDK (Minimum Support Device) is 25 (Android 7.1 Nougat).
|
|
const val targetSdk = 36 // Target SDK (Maximum Support Device) is 36 (Android 16).
|
|
|
|
val javaVersion = JavaVersion.VERSION_17
|
|
|
|
// Version Information
|
|
const val versionMajor = 3 // Major version component of the app's version name and version code.
|
|
const val versionMinor = 14 // Minor version component of the app's version name and version code.
|
|
const val versionPatch = 0 // Patch version component of the app's version name and version code.
|
|
}
|