Version: 2022.1
언어: 한국어
Developing for Universal Windows Platform
UWP Profiler

Deep linking on UWP

Deep links are URL links outside of your application that direct users to a location in your application. When the user clicks a deep link for an application, the operating system opens the Unity application at a specified place (for example, a specific scene). You can enable deep linking for Universal Windows Platform (UWP) applications. For more information about deep links and how to use them, see Deep links.

UWP 애플리케이션용 딥 링크 활성화

딥 링크를 처리하려면 먼저 커스텀 URI 체계를 추가하여 딥 링크에 반응하도록 애플리케이션을 설정해야 합니다.

커스텀 URI 체계를 추가하려면 다음 단계를 수행하십시오.

  1. Edit > Project Settings > Player Settings로 이동합니다.
  2. UWP를 선택하여 UWP 플레이어 설정 창을 엽니다.
  3. Publishing Settings > Protocol을 선택합니다.
  4. Name 필드에 애플리케이션과 연결할 URI를 입력합니다.(예: unitydl)

기기가 unitydl://로 시작하는 링크를 처리할 때 UWP 애플리케이션이 열립니다.

UWP에서 딥 링크 사용

유니버설 Windows 플랫폼용 딥 링크를 활성화한 후에는 플랫폼에 구애받지 않고 사용할 수 있습니다. 애플리케이션이 열릴 때 딥 링크를 처리하는 방법에 대한 자세한 내용은 딥 링크 사용을 참조하십시오.

Developing for Universal Windows Platform
UWP Profiler