개발/android & ios
[android/ios] 안드로이드 웹뷰 쿠키 설정 방법
효벨
2020. 11. 25. 02:00
728x90
반응형
[android/ios] 안드로이드 웹뷰 쿠키 설정 방법
안드로이드 개발중에,
웹뷰에서 쿠키 관련문제로 앱카드 결제가 안되는 현상들이 있습니다!
그럴때 아래와 같이 세팅해주면 됩니다!
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
webView.getSettings().setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
CookieManager cookieManager = CookieManager.getInstance();
cookieManager.setAcceptCookie(true);
cookieManager.setAcceptThirdPartyCookies(webView, true);
}
api 버전별로 상이하니,
꼭 테스트 및 검색해서 사용하시기 바랍니다!
참고하세요!!
반응형