> For the complete documentation index, see [llms.txt](https://docs.dfinery.ai/developer-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dfinery.ai/developer-guide/platform/unity/privacy/privacy.md).

# 개인 정보 보호 지원

이 문서는 사용자의 개인 정보 보호에 대해 유용한 기능 및 정보를 제공합니다.

## SDK 비활성화 및 재개

데이터 개인 정보 보호 규정을 준수하기 위해 다음 방법을 사용하여 SDK의 데이터 추적 활동을 완전히 중지하거나 재개할 수 있습니다.

### SDK 비활성화 하기

데이터 수집 동작을 비활성화 합니다. 이 API가 호출될 경우 SDK는 더이상 이벤트를 기록하지 않으며 모든 사용자 데이터를 제거합니다. 호출 이후 사용자가 광고 ID, 사용자 정보, 푸시 토큰 등을 설정하기 위해 호출하더라도 데이터를 수집하지 않습니다.

```csharp
Dfinery.DisableSDK();
```

### SDK 활성화 하기

SDK 동작을 재개합니다. 비활성화되어 있지 않은 상태일 경우 아무런 동작을 하지 않습니다.

```csharp
Dfinery.EnableSDK();
```

## 자동으로 수집되는 데이터

DFINERY는 다음의 정보를 자동으로 수집합니다.

### 세션 분석

DFINERY는 [활동의 생명주기 콜백](https://developer.android.com/reference/android/app/Application.ActivityLifecycleCallbacks)을 사용하여 세션을 분합니다.

### App Set ID

DFINERY는 유저를 특정하기 위해 [App Set Id](https://www.google.com/url?sa=t\&rct=j\&q=\&esrc=s\&source=web\&cd=\&ved=2ahUKEwjl6-Lfg8CDAxXdQPUHHa9BCYMQFnoECBIQAQ\&url=https%3A%2F%2Fdeveloper.android.com%2Ftraining%2Farticles%2Fapp-set-id\&usg=AOvVaw2BN0DC8U-gaq6r7U2PulxJ\&opi=89978449)를 자동으로 수집합니다.

### 단말기 정보

DFINERY는 다음의 단말기 정보를 자동으로 수집합니다.

> 해당 값은 앱의 환경 및 허용된 권한에 따라 수집되지 않을 수 있습니다.

| 항목                        | 예시        |
| ------------------------- | --------- |
| 단말기의 모델                   | SM-G973N  |
| 단말기의 운영체제                 | 12        |
| 단말기의 현재 연결되어 있는 통신사       | SKTelecom |
| 단말기의 설정된 언어               | ko        |
| 단말기의 설정된 지역               | ko\_KR    |
| 단말기의 설정된 Time Zone Offset | 540       |
| 단말기의 전화 기능 여부             | true      |
| 단말기의 현재 연결된 네트워크 종류       | wifi      |
| 단말기의 기기 제조사               | samsung   |

### 어플리케이션 정보

DFINERY는 다음의 어플리케이션 정보를 자동으로 수집합니다.

| 항목             | 예시                       |
| -------------- | ------------------------ |
| 어플리케이션의 앱 버전   | 1.0.30                   |
| 어플리케이션의 패키지 이름 | com.igaworks.dfinerydemo |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.dfinery.ai/developer-guide/platform/unity/privacy/privacy.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
