-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathplugin.xml
48 lines (46 loc) · 2.85 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="sb-cordova-plugin-sync"
version="3.2.0">
<name>A native plugin to sync telemetry,assesment and course progress </name>
<description></description>
<license>MIT</license>
<keywords></keywords>
<js-module src="www/plugin.js" name="SBSYNC">
<clobbers target="sbsync" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="sbsync">
<param name="android-package" value="org.sunbird.sync.SyncPlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/org/sunbird/sync/SyncPlugin.java" target-dir="src/org/sunbird/sync" />
<source-file src="src/android/org/sunbird/sync/db/DbService.java" target-dir="src/org/sunbird/sync/db" />
<source-file src="src/android/org/sunbird/sync/db/DbServiceImpl.java" target-dir="src/org/sunbird/sync/db" />
<source-file src="src/android/org/sunbird/sync/model/HttpResponse.java" target-dir="src/org/sunbird/sync/model" />
<source-file src="src/android/org/sunbird/sync/model/NetworkQueueModel.java" target-dir="src/org/sunbird/sync/model" />
<source-file src="src/android/org/sunbird/sync/model/Request.java" target-dir="src/org/sunbird/sync/model" />
<source-file src="src/android/org/sunbird/sync/network/ApiService.java" target-dir="src/org/sunbird/sync/network" />
<source-file src="src/android/org/sunbird/sync/network/ApiServiceImpl.java" target-dir="src/org/sunbird/sync/network" />
<source-file src="src/android/org/sunbird/sync/network/HttpOperation.java" target-dir="src/org/sunbird/sync/network" />
<source-file src="src/android/org/sunbird/sync/queue/NetworkQueue.java" target-dir="src/org/sunbird/sync/queue" />
<source-file src="src/android/org/sunbird/sync/queue/NetworkQueueImpl.java" target-dir="src/org/sunbird/sync/queue" />
<source-file src="src/android/org/sunbird/sync/preference/PreferenceService.java" target-dir="src/org/sunbird/sync/preference" />
<source-file src="src/android/org/sunbird/sync/preference/PreferenceServiceImpl.java" target-dir="src/org/sunbird/sync/preference" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="sbsync">
<param name="ios-package" value="SyncPlugin" />
</feature>
</config-file>
<source-file src="src/ios/SyncPlugin.swift" />
<source-file src="src/ios/db/db.swift" />
<source-file src="src/ios/model/NetworkQueueModel.swift" />
<source-file src="src/ios/preference/preference.swift" />
<source-file src="src/ios/queue/NetworkQueue.swift" />
</platform>
</plugin>