mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-23 18:11:15 +00:00
* feat(android): add Wear OS companion Co-authored-by: Sebastian Schubotz <git@sibbl.net> Co-authored-by: IWhatsskill <284122573+IWhatsskill@users.noreply.github.com> * style(android): format Wear release gate test * test(android): cover Wear release CI contracts * test(android): import Wear JSON fixture type * fix(android): harden Wear proxy event actor * test(android): stabilize Wear proxy actor tests * test(android): isolate Wear proxy actor lifecycles * test(android): own Wear actor dispatchers * test(android): use real time for Wear actor tests * test(android): own Wear actors in test scope * test(android): stop Wear actors explicitly * test(android): drain Wear actor cancellation * test(android): isolate Wear actors from test scheduler * test(android): inject Wear test clock --------- Co-authored-by: IWhatsskill <284122573+IWhatsskill@users.noreply.github.com>
22 lines
372 B
Kotlin
22 lines
372 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "OpenClawNodeAndroid"
|
|
include(":app")
|
|
include(":benchmark")
|
|
include(":wear")
|
|
include(":wear-shared")
|