mirror of
https://github.com/nacabaro/vbhelper.git
synced 2026-07-30 00:31:54 +00:00
- Detect ISO-DEP tags (VitalWear watch) vs NFC-A (physical bracelets) - Watch->Phone: use VitalWearHceReaderClient + VitalWearCharacterImporter - Phone->Watch: use VitalWearHceReaderClient + VitalWearCharacterExporter - Add AppDatabase to ScanScreenControllerImpl for HCE import/export - Extract buildCharacterProto() from VitalWearCharacterExporter - Add JitPack repository to settings.gradle.kts
26 lines
603 B
Plaintext
26 lines
603 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenLocal()
|
|
google()
|
|
mavenCentral()
|
|
maven { url = uri("https://jitpack.io") }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "VBHelper"
|
|
include(":app")
|