Notice
Recent Posts
Recent Comments
Link
투케이2K
408. (kotlin/코틀린) [유틸 파일] sendSmsMessage : SMS 문자 전송 실시 본문
[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// -----------------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [RETURN] sendSmsMessage : SMS 문자 전송 실시
// -----------------------------------------------------------------------------------------
fun sendSmsMessage(mContext: Context, phone: String, message: String): Boolean {
/**
* // -----------------------------------------
* [sendSmsMessage 메소드 설명]
* // -----------------------------------------
* 1. 외부 저장소 전체 용량 크기 구하기
* // -----------------------------------------
* 2. 호출 방식 :
*
* C_App.sendSmsMessage(A_Intro@this, "010-1234-5678", "TWOK")
*
* // -----------------------------------------
* 3. 리턴 데이터 : true / false
* // -----------------------------------------
* 4. 추가 설명 :
*
* SMS 문자 발송을 사용하기 위해서는 AndroidManifest.xml 파일에 권한을 선언해 줘야합니다
*
* <uses-permission android:name="android.permission.SEND_SMS"></uses-permission>
* // -----------------------------------------
*/
// [리턴 값 선언]
var returnData = false
var m_log = ""
var errorFlag = false
// [로직 처리 실시]
try {
// [1]. 인풋 값 널 체크 수행
if (C_Util.stringNotNull(phone) === false || C_Util.stringNotNull(message) === false) {
m_log = "[ERROR] : Input Data Is Null"
errorFlag = true
}
// [2]. 퍼미션 권한 부여 상태 확인
if (ContextCompat.checkSelfPermission(mContext!!, Manifest.permission.SEND_SMS) == PackageManager.PERMISSION_GRANTED) {
} else {
m_log = "[ERROR] : [SEND_SMS] Permission Not Granted"
errorFlag = true
}
// [3]. 휴대폰에 유심이 장착되어 있는지 확인
if (C_StateCheck.getUsimMounting(mContext) === false) {
m_log = "[ERROR] : [SEND_SMS] Device Usim Not Mounting"
errorFlag = true
}
// [4]. SMS 문자 발송 수행
if (errorFlag == false) {
var sendIntent: PendingIntent? = null
var deliveredIntent: PendingIntent? = null
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { // [타겟 31 이상]
sendIntent = PendingIntent.getBroadcast(mContext, 0, Intent("SMS_SENT"), PendingIntent.FLAG_IMMUTABLE)
deliveredIntent = PendingIntent.getBroadcast(mContext, 0, Intent("SMS_DELIVERED"), PendingIntent.FLAG_IMMUTABLE)
} else { // [타겟 31 미만]
sendIntent = PendingIntent.getBroadcast(mContext, 0, Intent("SMS_SENT"), 0)
deliveredIntent = PendingIntent.getBroadcast(mContext, 0, Intent("SMS_DELIVERED"), 0)
}
val smsManager = SmsManager.getDefault()
smsManager.sendTextMessage(phone, null, message, sendIntent, deliveredIntent)
m_log = "[Success] : SEND_SMS"
returnData = true
}
} catch (e: Exception) {
S_Log._printStackTrace_(mContext, S_FinalMsg.LOG_BUG_STATE, null, e)
m_log = "[Exception] : " + e.message.toString()
errorFlag = true
}
// [로그 출력 실시]
///*
// ===============================================================
S_Log._D_("SMS 문자 전송 실시", arrayOf(
"INPUT [PHONE] :: $phone",
"INPUT [MESSAGE] :: $message",
"M_LOG :: $m_log",
"RETURN :: $returnData"
))
// ===============================================================
// */
// [리턴 반환 실시]
return returnData
}
반응형
'Kotlin' 카테고리의 다른 글
Comments