아래 사이트에 회원가입 후 본인의 Access key 적용 후 테스트 가능합니다.
class Constants {
companion object{
const val ACCESS_KEY = /** your access key **/
// [23/05/23] [YSI] Define intent name for communication.
const val ACTION_VOICE_ASSISTANT_REQUEST = "com.volvo.assistanceandroid.request"
const val ACTION_VOICE_ASSISTANT_RESULT = "com.volvo.assistanceandroid.result"
// [23/05/23] [YSI] Define extra name for communication. Other app will get the request by this id.
const val REQUEST = "request"
// [23/05/23] [YSI] Result intent should be returned from other apps when finish the request.
const val FAIL = 0
const val SUCCESS = 1
}
}
- SR(Synonym Replacement)
- RI,RD(Random Insertion, Random Deletion)
- RS(Random Swap)