mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
chore(build): Refactor Gradle build scripts to Kotlin DSL (#1944)
This commit is contained in:
parent
6332b3bd42
commit
b7c0bc874c
10 changed files with 140 additions and 65 deletions
26
buildSrc/src/main/kotlin/Configs.kt
Normal file
26
buildSrc/src/main/kotlin/Configs.kt
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Copyright (c) 2025 Meshtastic LLC
|
||||
*
|
||||
* 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 <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
object Configs {
|
||||
const val APPLICATION_ID = "com.geeksville.mesh"
|
||||
const val MIN_SDK_VERSION = 23
|
||||
const val TARGET_SDK = 36
|
||||
const val COMPILE_SDK = 36
|
||||
const val VERSION_CODE = 30603 // format is Mmmss (where M is 1+the numeric major number
|
||||
const val VERSION_NAME = "2.6.3"
|
||||
const val USE_CRASHLYTICS = true // Set to false if you don't want to use Firebase Crashlytics
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue