Summary
기본 설정 언어인 en-US와 기본 설정 디바이스인 mobile 이외에 다른 언어나 디바이스를 추가하는 방법을 알려드리고자 합니다.
Details/Cause
처음 캡슐을 생성하면 capsule.bxb가 자동으로 생성됩니다.
아래는 자동으로 생성된 capsule.bxb의 초기 상태입니다
ex) Dice example
capsule.bxb
capsule {
id (example.dice)
format (3)
version (0.1.1)
targets {
target (bixby-mobile-en-US)
}
}
기본 설정 이외에 다른 언어나 디바이스를 추가하려면 targets에 지원하고자 하는 언어와 디바이스를 추가하면 됩니다.
(단, Bixby Developer Center에서 지원하는 언어와 디바이스를 확인하신 후 추가해주세요.)
ex) Dice example
capsule.bxb
capsule {
id (example.dice)
format (3)
version (0.1.1)
targets {
target (bixby-mobile-en-US) // English(US)
target (bixby-mobile-en-IN) // English(India)
target (bixby-mobile-en-GB) // English(UK)
target (bixby-mobile-ko-KR) // Korean(South Korea)
...
}
}
더욱 자세한 사항은 아래 링크에서 확인할 수 있습니다.
https://bixbydevelopers.com/dev/docs/reference/type/capsule.targets.target
Comments
0 comments
Article is closed for comments.