This repository has been archived by the owner on Jun 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
57 lines (57 loc) · 2.35 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
45
46
47
48
49
50
51
52
53
54
55
56
57
<plugin id="cordova-plugin-sqlite-batch-connection-manager-core" version="0.0.1-dev">
<js-module src="www/sqlite-batch-connection-manager.js" name="sqliteBatchConnectionManager">
<runs/>
</js-module>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="SQLiteBatchConnectionManager">
<param name="android-package" value="io.sqlc.SQLiteBatchConnectionManager"/>
</feature>
</config-file>
<source-file src="src/android/SQLiteBatchConnectionManager.java" target-dir="src/io/sqlc"/>
<source-file src="dist-dependencies/SQLiteBatchCore.java" target-dir="src/io/sqlc"/>
<lib-file src="dist-dependencies/sqlite-connection-core-glue.jar" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="SQLiteBatchConnectionManager">
<param name="ios-package" value="SQLiteBatchConnectionManager"/>
</feature>
</config-file>
<source-file src="src/ios/SQLiteBatchConnectionManager.m"/>
<header-file src="dist-dependencies/SQLiteBatchCore.h" />
<source-file src="dist-dependencies/SQLiteBatchCore.m" />
<header-file src="dist-dependencies/sqlite3.h" />
<source-file
src="dist-dependencies/sqlite3.c"
compiler-flags="
-DSQLITE_DEFAULT_SYNCHRONOUS=3
-DSQLITE_THREADSAFE=1
-DHAVE_USLEEP
-DHAVE_UTIME
" />
<header-file src="dist-dependencies/sqlite-connection-core.h" />
<source-file src="dist-dependencies/sqlite-connection-core.c" />
</platform>
<platform name="osx">
<config-file target="config.xml" parent="/*">
<feature name="SQLiteBatchConnectionManager">
<param name="osx-package" value="SQLiteBatchConnectionManager"/>
</feature>
</config-file>
<source-file src="src/ios/SQLiteBatchConnectionManager.m"/>
<header-file src="dist-dependencies/SQLiteBatchCore.h" />
<source-file src="dist-dependencies/SQLiteBatchCore.m" />
<header-file src="dist-dependencies/sqlite3.h" />
<source-file
src="dist-dependencies/sqlite3.c"
compiler-flags="
-DSQLITE_DEFAULT_SYNCHRONOUS=3
-DSQLITE_THREADSAFE=1
-DHAVE_USLEEP
-DHAVE_UTIME
" />
<header-file src="dist-dependencies/sqlite-connection-core.h" />
<source-file src="dist-dependencies/sqlite-connection-core.c" />
</platform>
</plugin>