Initial commit, adding original binaries, initial watch and companion apps which can talk

This commit is contained in:
ml
2026-06-01 15:53:11 +02:00
commit d7adb56197
63 changed files with 1787 additions and 0 deletions
@@ -0,0 +1,27 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://oss.sonatype.org/content/repositories/releases/") }
}
}
rootProject.name = "SchwertUndMagieOnPebbleCompanionApp"
include(":app")