-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
29 lines (29 loc) · 1.08 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
<plugin id="cordova-sqlite-storage-file" version="0.1.0-dev">
<js-module src="www/sqliteStorageFile.js" name="sqliteStorageFile">
<runs/>
</js-module>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="SQLiteStorageFilePlugin">
<param name="android-package" value="io.sqlc.SQLiteStorageFilePlugin"/>
</feature>
</config-file>
<source-file src="src/android/SQLiteStorageFilePlugin.java" target-dir="src/io/sqlc"/>
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="SQLiteStorageFilePlugin">
<param name="ios-package" value="SQLiteStorageFilePlugin"/>
</feature>
</config-file>
<source-file src="src/ios/SQLiteStorageFilePlugin.m"/>
</platform>
<platform name="osx">
<config-file target="config.xml" parent="/*">
<feature name="SQLiteStorageFilePlugin">
<param name="osx-package" value="SQLiteStorageFilePlugin"/>
</feature>
</config-file>
<source-file src="src/ios/SQLiteStorageFilePlugin.m"/>
</platform>
</plugin>