Мой манфест:
spoiler<?xml version='1.0' encoding='utf-8'?>
<widget id="test" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>Forums</name>
<description>
Форум
</description>
<author email="xxx@gmail.com" href="https://site.ru">
Автор
</author>
<content src="index.html" />
<preference name="DisallowOverscroll" value="true" />
<preference name="android-minSdkVersion" value="19" />
<plugin name="cordova-plugin-whitelist" source="npm" />
<plugin name="cordova-plugin-splashscreen" source="npm" />
<plugin name="cordova-plugin-inappbrowser" source="npm" />
<preference name="SplashScreenDelay" value="3000" />
<preference name="AutoHideSplashScreen" value="true" />
<preference name="SplashMaintainAspectRatio" value="true" />
<allow-navigation href="*" />
<icon src="icon.png" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>
Как можно видеть, код для подключения плагина добавлен:
<plugin name="cordova-plugin-inappbrowser" source="npm" />
Однако, при сборке в сервисе я получаю ошибку:
Error - Some official plugins have to be updated if using PhoneGap >= 4.0.0. Please upgrade the version of any plugins that may include the following file: InAppBrowser.java - You can fix this here
И я не понимаю, как эту ошибку побороть и все же подключить нужный мне плагин. Сам плагин мне нужен для вставки своего кастомного JavaScript-кода на страницы сайта. Если существуют другие плагины, позволяющие инжектить свой код на просматриваемые страницы, буду признателен за наводку.