We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8e85d9f + 166679c commit b59c5d7Copy full SHA for b59c5d7
easybridge/src/main/java/tech/easily/easybridge/lib/EasyBridgeWebView.java
@@ -53,8 +53,10 @@ public interface OnBridgeInjectedListener {
53
private OnBridgeInjectedListener listener;
54
55
public EasyBridgeWebView(Context context, String bridgeName) {
56
- this(context, (AttributeSet) null);
+ super(context);
57
this.bridgeName = bridgeName;
58
+ easyBridge = new EasyBridge(this, bridgeName);
59
+ initWebView();
60
}
61
62
public EasyBridgeWebView(Context context, AttributeSet attrs) {
0 commit comments