chore(build): Refactor Gradle build scripts to Kotlin DSL (#1944)

This commit is contained in:
James Rich 2025-05-26 21:26:46 -05:00 committed by GitHub
parent 6332b3bd42
commit b7c0bc874c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 140 additions and 65 deletions

View 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
}