From cd45881c96200021ebc38f4ca336767c4483b5df Mon Sep 17 00:00:00 2001 From: Jugal Kishor Date: Sat, 13 Feb 2016 04:48:45 +0530 Subject: [PATCH 1/2] Update AndroidMediaGestureSetting.java --- .../plugins/videosettings/AndroidMediaGestureSetting.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/com/simplec/phonegap/plugins/videosettings/AndroidMediaGestureSetting.java b/src/android/com/simplec/phonegap/plugins/videosettings/AndroidMediaGestureSetting.java index 18cf6ea..11c3b0a 100644 --- a/src/android/com/simplec/phonegap/plugins/videosettings/AndroidMediaGestureSetting.java +++ b/src/android/com/simplec/phonegap/plugins/videosettings/AndroidMediaGestureSetting.java @@ -48,7 +48,7 @@ public WebView getWebViewFromPlugin() throws NoSuchMethodException, IllegalAcces thisView = ((WebView) webView); } else { Log.e(LOG_TAG, "using reflection to get method getView"); - Method m = webView.getClass().getDeclaredMethod("getView", null); + Method m = webView.getClass().getDeclaredMethod("getView"); Log.e(LOG_TAG, "got method: "+m); thisView = (WebView) m.invoke(webView);// webView.getView()); From 69358d233aecd298fa126096edf1643931e7c99b Mon Sep 17 00:00:00 2001 From: Jugal Kishor Date: Sat, 13 Feb 2016 04:50:53 +0530 Subject: [PATCH 2/2] Update plugin.xml --- plugin.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin.xml b/plugin.xml index 49f4011..cec3410 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,7 +1,7 @@ Android Media Gesture Setting @@ -20,12 +20,12 @@ - + - +