Today I met error on android send SMS function with below error message "does not have android.permission.SEND_SMS" This problem came up on android API 23. I never met this kind of error under API 23. What I found solution is that first, give SEMD_SMS permission on AndroidManifest.xml file then, I implemented code like this // first, call address intent to get person mobile number public void se..
does not have android.permission.SEND_SMS 검색 결과
해당 글 2건
Trouble shoot for does not have android.permission.SEND_SMS case in Android
개발/코딩
2016. 9. 29. 10:26
잘되던 안드로이드 문자보내기 기능이 권한문제때문에 갑자기 안될때(does not have android.permission.SEND_SMS)
예전에 잘 사용하던 기능이었는데 갑자기 does not have android.permission.SEND_SMS 문구가 뜨면서 안되는 경우가 발생했습니다.문제는 API 23 이상버전을 사용했을때 요런 문제가 생기네요. ㅠㅠ 먼저 AndroidManifest.xml 파일일에 다음과 같은 권한을 줍니다. 그리고 문자보내기 해결방법은 아래와 같이 수정해서 해결했어요 // 먼저 핸드폰의 주소록을 불러와서 문자를 보낼 사람과 전화번호을 알아오도록 해 줍니다. public void sendBySMS() { Intent intent = new Intent(Intent.ACTION_PICK); intent.setData(ContactsContract.CommonDataKinds.Phone.CONTENT_URI); s..
개발/코딩
2016. 9. 29. 10:20
최근댓글