> 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/android/action/sms.md).

# 문자

## 유저 식별 정보 설정

문자 발송을 위해 [유저 식별 정보](/developer-guide/platform/android/identity.md) 중 핸드폰 번호를 설정해 주세요.

{% tabs %}
{% tab title="Java" %}

```java
DfineryProperties.setIdentity(DFIdentity.PHONE_NO, "821012345678");
```

{% endtab %}

{% tab title="Kotlin" %}

```kotlin
DfineryProperties.setIdentity(DFIdentity.PHONE_NO, "821012345678")
```

{% endtab %}
{% endtabs %}

{% hint style="warning" %}
전화번호의 경우 다음과 같은 형식으로 입력해주시기를 바랍니다. ex) 821012345678, 82212345678
{% endhint %}
