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

  kotlin {
      tvos()
  }

Could be replaced by declaring the supported tvos targets directly:

  kotlin {
      tvosX64()
      tvosArm64()
      tvosSimulatorArm64() /* <- Note: Was not previously applied */
      /* ... */
  }

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