forked from johanblomgren/cordova-plugin-indexappcontent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
44 lines (31 loc) · 1.22 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
41
42
43
44
<?xml version='1.0' encoding='UTF-8'?>
<plugin
id="cordova-plugin-indexappcontent"
version="0.5.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>Index App Content</name>
<author>Johan Blomgren</author>
<description>Enable on-device searchable app content indexing.</description>
<keywords>CSSearchableItem, Index App Content, Core Spotlight</keywords>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.5.0"/>
</engines>
<platform name="ios">
<js-module name="IndexAppContent" src="www/IndexAppContent.js">
<clobbers target="plugins.indexAppContent"/>
</js-module>
<config-file parent="/*" target="config.xml">
<feature name="IndexAppContent">
<param name="ios-package" value="IndexAppContent"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<header-file src="src/ios/app/IndexAppContent.h"/>
<source-file src="src/ios/app/IndexAppContent.m"/>
<header-file src="src/ios/app/AppDelegate+IndexAppContent.h"/>
<source-file src="src/ios/app/AppDelegate+IndexAppContent.m"/>
<framework src="MobileCoreServices.framework" />
<framework src="CoreSpotlight.framework" />
</platform>
</plugin>