Chromium For Android addPossiblyUnsafeInterface Not working

159 Views Asked by At

Hey im building Chromium for Android, and I'm trying to figure out why Javascript Interface isnt allowing me to inject javascript within a webpage within Chrome Activity Class.. Even when I call tab.getWebContents().evaluateJavaScript() seperately, the browser freezes. Is there any way to achieve this successfully? Below is a snippet of my code

  import org.chromium.content.browser.JavascriptInterface;

  // Chrome Activity
  public abstract class ChromeActivity<C extends ChromeActivityComponent>
  ....

   @Override
   public void onDidFinishNavigation(Tab tab, String url, boolean isInMainFrame,
                                          boolean isErrorPage, boolean hasCommitted, boolean isSameDocument,
                                          boolean isFragmentNavigation, @Nullable Integer pageTransition, int errorCode,
                                          int httpStatusCode)
              { 

                    JavascriptInjector ji = JavascriptInjector.fromWebContents(tab.getWebContents());
                    tab.getWebContents().evaluateJavaScript("alert("Hello World");",null);
                    ji.setAllowInspection(true);

                    ji.addPossiblyUnsafeInterface(new MyJavaScriptInterface(ChromeActivity.this), "JS", JavascriptInterface.class);
             }


 class MyJavaScriptInterface {

     ChromeActivity context;
     public MyJavaScriptInterface(ChromeActivity activity) {
     this.context = activity;
  }

  @JavascriptInterface
  public void app(){
  int duration = Toast.LENGTH_SHORT;
  Toast toast = Toast.makeText(this.context, "Test", duration);
  toast.show();
  }
}
0

There are 0 best solutions below