I want to install a Firefox extension in a GeckoView I tried the instruction from the docu ().
My code:
val runtime = GeckoRuntime.create(this)
geckoSession.open(runtime)
geckoView.setSession(geckoSession)
runtime.getWebExtensionController().installBuiltIn("resource://android/assets/addonXY/")
The Problem is that getWebExtensionController() has no installBuiltIn() function.
Can someone help me show me how to install extensions in GeckView