-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
19 lines (18 loc) · 1008 Bytes
/
plugin.xml
File metadata and controls
19 lines (18 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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-sqlite-cursor-window-size" version="0.0.1">
<name>SQLite sCursorWindowSize initializer</name>
<description>Cordova Plugin to initialize SQLite sCursorWindowSize with increased value</description>
<license>Apache 2.0</license>
<keywords>cordova,sqlite,cursorwindowsize</keywords>
<js-module src="www/sqliteCursorWindowSize.js" name="sqliteCursorWindowSize">
<clobbers target="cordova.plugins.sqliteCursorWindowSize"/>
</js-module>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="SQLite-CursorWindowSize">
<param name="android-package" value="de.bfpi.cordova.sqlite.CursorWindowSize"/>
</feature>
</config-file>
<source-file src="src/de/bfpi/cordova/sqlite/CursorWindowSize.java" target-dir="src/de/bfpi/cordova/sqlite"/>
</platform>
</plugin>