[KotlinDefaultHierarchyFallbackNativeTargetShortcutUsageDetected | WARNING] The Default Kotlin Hierarchy Template was not applied to 'root project 'test'':
Deprecated 'watchos()' shortcut was used:

  kotlin {
      watchos()
  }

Please declare the required targets explicitly:

  kotlin {
      watchosX64()
      watchosArm64()
      watchosSimulatorArm64() /* <- Note: Was not previously applied */
      /* ... */
  }

After that, replace `by getting` with static accessors:

  sourceSets {
      commonMain { ... }

      watchosMain {
          dependencies { ... }
      }
  }

To suppress the 'Default Hierarchy Template' add
    'kotlin.mpp.applyDefaultHierarchyTemplate=false'
to your gradle.properties

Learn more about hierarchy templates: https://kotl.in/hierarchy-template
