Initial public release.

This commit is contained in:
Joe Kearney 2025-02-08 21:42:42 -06:00
parent e3cbaf4eb3
commit 9d645cb435
48 changed files with 1663 additions and 2 deletions

23
settings.gradle.kts Normal file
View file

@ -0,0 +1,23 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "KTag BLE Tool"
include(":app")