Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
<?xml version='1.0' encoding='utf-8'?>
<plugin id="de-motifconnector-plugin" version="0.2.3" xmlns="http://apache.org/cordova/ns/plugins/1.0">

	<name>DEMotifConnector</name>


	<!--
	<hook type="after_plugin_install" src="hooks/addFrameworks.js" />
	<hook type="after_plugin_add" src="hooks/addEmbedded.js" />
  -->

	<js-module name="DEMotifConnector" src="www/MotifConnector.js">
		<clobbers target="DynamicEngine.plugins.MotifConnector" />
	</js-module>

	<platform name="android">
		<config-file parent="/*" target="res/xml/config.xml">
			<feature name="MotifConnector">
				<param name="android-package" value="com.vipera.motifconnector.MotifConnector" />
				<param name="onload" value="true" />
			</feature>
		</config-file>
		<config-file parent="/*" target="AndroidManifest.xml">
			<uses-permission android:name="android.permission.INTERNET" />
			<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
		</config-file>
		<source-file src="src/android/MotifConnector.java" target-dir="src/com/vipera/motifconnector" />
		<framework custom="true" src="src/android/MotifConnector.gradle" type="gradleReference" />
	</platform>

	<platform name="ios">
		<config-file parent="/*" target="config.xml">
			<feature name="MotifConnector">
				<param name="ios-package" value="MotifConnector" />
				<param name="onload" value="true" />
			</feature>
		</config-file>
		<source-file src="src/ios/MotifConnector.m" />
		<source-file src="src/ios/DEMotifConnectorPluginConfiguration.h" />
		<source-file src="src/ios/DEMotifConnectorPluginConfiguration.m" />

    <dependency id="com.vipera.de.foundation.connector"/>

	</platform>

	<platform name="browser">
			<config-file target="config.xml" parent="/*">
					<feature name="MotifConnector">
							<param name="browser-package" value="MotifConnector"/>
							<param name="onload" value="true" />
					</feature>
			</config-file>
			<js-module src="src/browser/MotifConnectorProxy.js" name="MotifConnector">
					<runs/>
			</js-module>
	</platform>


</plugin>