initialxy / cordova-plugin-themeablebrowser

Fork of org.apache.cordova.inappbrowser in an attempt to make it a bit more themeable and configurable to add some custom actions.
Apache License 2.0
294 stars 221 forks source link

all setAcceptThirdPartyCookies set-cookie #178

Open terribleness opened 6 years ago

terribleness commented 6 years ago

//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); }