cordova-plugin-themeablebrowser
cordova-plugin-themeablebrowser copied to clipboard
all setAcceptThirdPartyCookies set-cookie
//allow setAcceptThirdPartyCookies in android5.0+,such as set-cookie in response headers //should add in ThemeableBrowser.java at line 803 // Enable Thirdparty Cookies on >=Android 5.0 device if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) { CookieManager.getInstance().setAcceptThirdPartyCookies(inAppWebView,true); }