1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/mbyte-DbHelper

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
plugin.xml 10 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
yilong.xie Отправлено 04.09.2014 07:43 6795729
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.smartevent.plugins.dbhelper"
version="1.0.0">
<name>SmartEvent SQLitePlugin</name>
<license>MIT</license>
<description>Native interface to SQLite for PhoneGap/Cordova. Allows you to use more storage and provides more flexibility than the standard Web SQL database (window.openDatabase).</description>
<author>Various</author>
<engines>
<engine name="cordova" version=">=3.5.0" />
</engines>
<js-module src="www/DbHelper.js" name="DbHelper">
<clobbers target="DbHelper" />
</js-module>
<!-- amazon-fireos -->
<platform name="amazon-fireos">
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.smartevent.plugins.dbhelper.DbHelper"
android:label="@string/app_name">
</activity>
</config-file>
<!-- Cordova >= 3.0.0 -->
<config-file target="res/xml/config.xml" parent="/*">
<feature name="DbHelper">
<param name="android-package" value="com.smartevent.plugins.dbhelper.DbHelper"/>
</feature>
</config-file>
<source-file src="src/android/com/smartevent/plugins/dbhelper/DbHelper.java" target-dir="src/com/smartevent/plugins/dbhelper"/>
<source-file src="src/android/com/smartevent/plugins/dbhelper/Action.java" target-dir="src/com/smartevent/plugins/dbhelper"/>
<source-file src="src/android/com/smartevent/plugins/dbhelper/PGSQLitePlugin.java" target-dir="src/com/smartevent/plugins/dbhelper"/>
<!-- copy database to assets folder -->
<!-- <source-file src="src/android/smartevent.db" target-dir="assets"/>-->
</platform>
<!-- android -->
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.smartevent.plugins.dbhelper.DbHelper"
android:label="@string/app_name">
</activity>
</config-file>
<!-- Cordova >= 3.0.0 -->
<config-file target="res/xml/config.xml" parent="/*">
<feature name="DbHelper">
<param name="android-package" value="com.smartevent.plugins.dbhelper.DbHelper"/>
</feature>
</config-file>
<source-file src="src/android/com/smartevent/plugins/dbhelper/DbHelper.java" target-dir="src/com/smartevent/plugins/dbhelper"/>
<source-file src="src/android/com/smartevent/plugins/dbhelper/Action.java" target-dir="src/com/smartevent/plugins/dbhelper"/>
<source-file src="src/android/com/smartevent/plugins/dbhelper/PGSQLitePlugin.java" target-dir="src/com/smartevent/plugins/dbhelper"/>
<!-- copy database to assets folder -->
<!-- <source-file src="src/android/smartevent.db" target-dir="assets"/>-->
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="DbHelper">
<param name="ios-package" value="DbHelper" />
</feature>
</config-file>
<!-- Note: the ios src is based off src/ios implicitly -->
<header-file src="src/ios/DbHelper.h" />
<source-file src="src/ios/DbHelper.m" />
<header-file src="src/ios/NSString+Extended.h" />
<source-file src="src/ios/NSString+Extended.m" />
<!-- <source-file src="src/ios/smartevent.db" target-dir="Resources"/>-->
<!-- <source-file src="src/ios/smartevent.db" />-->
<framework src="libsqlite3.dylib" />
</platform>
<!-- wp8 using dlls [should work but not tested on wp7]
NOTE: SQLiteWPNative.dll includes the classes from SQLite.cs
(which is not desired).
<platform name="wp8">
<config-file target="config.xml" parent="/*">
<feature name="SQLitePlugin">
<param name="wp-package" value="SQLitePlugin" />
</feature>
</config-file>
<source-file src="src/wp/SQLitePlugin.cs" />
<framework src="src/wp/cs-sqlite-dll/SQLiteWPNative.dll" custom="true" />
</platform>
-->
<platform name="wp8">
<config-file target="config.xml" parent="/*">
<feature name="DbHelper">
<param name="wp-package" value="DbHelper" />
</feature>
</config-file>
<source-file src="src/wp/DbHelper.cs" />
<source-file src="src/wp/SQLite.cs" />
<source-file src="src/wp/csharp-sqlite-src/_Custom.cs" />
<source-file src="src/wp/csharp-sqlite-src/BtreeInt_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/Btree_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/Delegates.cs" />
<source-file src="src/wp/csharp-sqlite-src/Hash_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/VdbeInt_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/Vdbe_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/alter_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/analyze_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/attach_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/auth_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/backup_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/bitvec_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/btmutex_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/btree_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/build_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/callback_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/complete_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/crypto.cs" />
<source-file src="src/wp/csharp-sqlite-src/ctime_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/date_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/delete_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/expr_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/fault_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/fkey_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/func_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/global_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/hash_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/hwtime_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/insert_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/journal_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/keywordhash_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/legacy_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/loadext_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/main_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/malloc_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/mem_Pool.cs" />
<source-file src="src/wp/csharp-sqlite-src/memjournal_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/mutex_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/mutex_noop_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/notify_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/opcodes_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/opcodes_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/os_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/os_common_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/os_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/os_win_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/pager_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/pager_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/parse_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/parse_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/pcache1_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/pcache_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/pcache_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/pragma_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/prepare_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/printf_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/random_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/resolve_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/rowset_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/select_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/sqlite3_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/sqliteInt_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/sqliteLimit_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/status_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/table_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/tokenize_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/trigger_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/update_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/utf_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/util_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/vacuum_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/vdbe_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/vdbeapi_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/vdbeaux_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/vdbeblob_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/vdbemem_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/vdbetrace_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/vtab_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/wal_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/wal_h.cs" />
<source-file src="src/wp/csharp-sqlite-src/walker_c.cs" />
<source-file src="src/wp/csharp-sqlite-src/where_c.cs" />
</platform>
</plugin>

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/mbyte-DbHelper.git
git@api.gitlife.ru:oschina-mirror/mbyte-DbHelper.git
oschina-mirror
mbyte-DbHelper
mbyte-DbHelper
master