Skip to content

Commit

Permalink
Merge pull request #8 from Telerik-Verified-Plugins/bektchiev/fix-bui…
Browse files Browse the repository at this point in the history
…ld-cordova3

[Android] Fix compilation error on Cordova < 4.0.0
  • Loading branch information
Martin Bektchiev authored Jul 14, 2016
2 parents d5ffc52 + 1b7555b commit d3264c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/com/telerik/feedback/AppFeedback.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private class BitmapResolverCrosswalk implements BitmapResolver {
@Override
public Bitmap getBitmapFromView(View view) {
AppFeedback.this.crosswalkLatch = new CountDownLatch(1);
webView.getPluginManager().postMessage("captureXWalkBitmap", this);
webView.postMessage("captureXWalkBitmap", this);
try {
AppFeedback.this.crosswalkLatch.await(5L, TimeUnit.SECONDS);
} catch (Exception e) {
Expand Down

0 comments on commit d3264c3

Please sign in to comment.