mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
refactor: maps (#2097)
Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
parent
c05f434ff2
commit
87e50e03ea
76 changed files with 4188 additions and 1830 deletions
|
|
@ -15,6 +15,7 @@
|
|||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
||||
|
||||
plugins {
|
||||
alias(libs.plugins.android.library)
|
||||
|
|
@ -31,7 +32,7 @@ android {
|
|||
}
|
||||
compileSdk = Configs.COMPILE_SDK
|
||||
defaultConfig {
|
||||
minSdk = Configs.MIN_SDK_VERSION
|
||||
minSdk = Configs.MIN_SDK
|
||||
}
|
||||
|
||||
namespace = "com.geeksville.mesh.network"
|
||||
|
|
@ -64,4 +65,11 @@ dependencies {
|
|||
detekt {
|
||||
config.setFrom("../config/detekt/detekt.yml")
|
||||
baseline = file("../config/detekt/detekt-baseline-network.xml")
|
||||
source.setFrom(
|
||||
files(
|
||||
"src/main/java",
|
||||
"google/main/java",
|
||||
"fdroid/main/java",
|
||||
)
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue