Fix NoSuchMethodException looking up cookies.

This commit is contained in:
Darryl Pogue
2015-03-05 11:48:47 -08:00
parent 3ff8382929
commit f5d6cd8e16
+1 -1
View File
@@ -220,7 +220,7 @@ public class FileTransfer extends CordovaPlugin {
try {
Method gcmMethod = webViewClass.getMethod("getCookieManager");
Class iccmClass = gcmMethod.getReturnType();
Method gcMethod = iccmClass.getMethod("getCookie");
Method gcMethod = iccmClass.getMethod("getCookie", String.class);
cookie = (String)gcMethod.invoke(
iccmClass.cast(