-
Notifications
You must be signed in to change notification settings - Fork 6
/
plugin.xml
40 lines (33 loc) · 1.84 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-smartlook" version="2.0.6">
<name>Smartlook</name>
<description>Official Smartlook SDK plugin for Cordova Android and iOS applications.</description>
<js-module name="SmartlookPlugin" src="www/cordova-plugin-smartlook.js">
<clobbers target="cordova.plugins.SmartlookPlugin" />
<clobbers target="Smartlook" />
</js-module>
<platform name="android">
<config-file parent="/*" target="config.xml">
<preference name="GradlePluginKotlinEnabled" value="true" />
<feature name="SmartlookPlugin">
<param name="android-package" value="com.smartlook.cordovaplugin.SmartlookPlugin" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<framework src="src/android/plugin.gradle" custom="true" type="gradleReference" />
<source-file src="src/android/com/smartlook/cordovaplugin/SmartlookPlugin.kt" target-dir="java/com/smartlook/cordovaplugin/SmartlookPlugin" />
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="SmartlookPlugin">
<param name="ios-package" value="SmartlookPlugin" />
</feature>
</config-file>
<framework src="src/ios/SmartlookAnalytics.xcframework" custom="true" embed="true"/>
<header-file src="src/ios/SmartlookPlugin-Bridging-Header.h" type="BridgingHeader" />
<source-file src="src/ios/SmartlookPlugin+Extensions.swift" />
<source-file src="src/ios/SmartlookPlugin+RecordingMask.swift" />
<source-file src="src/ios/SmartlookPlugin.swift" />
<source-file src="src/ios/SmartlookPlugin+APIHelper.swift" />
</platform>
</plugin>