-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathplugin.xml
More file actions
142 lines (130 loc) · 11.7 KB
/
plugin.xml
File metadata and controls
142 lines (130 loc) · 11.7 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-firestore" version="4.1.1">
<name>Cordova Firestore Plugin</name>
<description>Google Firebase Firestore</description>
<license>MIT</license>
<keywords>database, nosql, realtime, cloud</keywords>
<engines>
<engine name="cordova" version=">=7.0.0" />
<engine name="cordova-android" version=">=7.0.0" />
<engine name="cordova-plugman" version=">=4.2.0" />
<engine name="cordova-ios" version=">=4.5.0" />
</engines>
<platform name="browser">
<js-module src="www/browser/firestore.js" name="Firestore">
<clobbers target="Firestore"/>
</js-module>
</platform>
<platform name="android">
<js-module src="www/android_ios/firestore.js" name="Firestore">
<clobbers target="Firestore"/>
</js-module>
<js-module src="www/android_ios/collection_reference.js" name="collection_reference"/>
<js-module src="www/android_ios/query.js" name="query"/>
<js-module src="www/android_ios/document_reference.js" name="document_reference"/>
<js-module src="www/android_ios/document_snapshot.js" name="document_snapshot"/>
<js-module src="www/android_ios/query_snapshot.js" name="query_snapshot"/>
<js-module src="www/android_ios/query_document_snapshot.js" name="query_document_snapshot"/>
<js-module src="www/android_ios/firestore_timestamp.js" name="firestore_timestamp"/>
<js-module src="www/android_ios/transaction.js" name="transaction"/>
<js-module src="www/android_ios/utilities.js" name="utilities"/>
<js-module src="www/android_ios/geo_point.js" name="geo_point" />
<js-module src="www/android_ios/path.js" name="path" />
<js-module src="www/android_ios/utils.js" name="utils" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Firestore">
<param name="android-package" value="uk.co.reallysmall.cordova.plugin.firestore.FirestorePlugin"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<preference name="ANDROID_FIREBASE_FIRESTORE_VERSION" default="21.3.1"/>
<framework src="com.google.firebase:firebase-firestore:$ANDROID_FIREBASE_FIRESTORE_VERSION"/>
<framework src="com.google.code.gson:gson:2.8.2"/>
<framework src="firestore.gradle" custom="true" type="gradleReference"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/ActionHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/CollectionAddHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/CollectionGetHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/CollectionOnSnapshotHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/CollectionUnsubscribeHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/DocGetHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/DocDeleteHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/DocOnSnapshotHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/DocSetHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/DocUnsubscribeHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/DocUpdateHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/EndAtQueryHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/EndBeforeQueryHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/FirestorePlugin.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/InitialiseHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/JSONDateWrapper.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/JSONTimestampWrapper.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/JSONGeopointWrapper.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/JSONReferenceWrapper.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/JSONHelper.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/LimitQueryHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/OrderByQueryHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/PluginResultHelper.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/QueryHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/QueryHelper.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/StartAfterQueryHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/StartAtQueryHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/WhereQueryHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/FieldValueHelper.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/RunTransactionHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/TransactionDocGetHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/TransactionDocSetHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/TransactionDocDeleteHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/TransactionDocUpdateHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/TransactionQueue.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/TransactionResolveHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/DocSetOptions.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/TransactionDetails.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/TransactionOperationType.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/FirestoreLog.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/FieldPathHelper.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/BatchCommitHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/BatchDocSetHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/BatchDocDeleteHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/BatchDocUpdateHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
<source-file src="src/android/uk/co/reallysmall/cordova/plugin/firestore/BatchHandler.java" target-dir="src/uk/co/reallysmall/cordova/plugin/firestore"/>
</platform>
<platform name="ios">
<js-module src="www/android_ios/firestore.js" name="Firestore">
<clobbers target="Firestore"/>
</js-module>
<js-module src="www/android_ios/collection_reference.js" name="collection_reference"/>
<js-module src="www/android_ios/query.js" name="query"/>
<js-module src="www/android_ios/document_reference.js" name="document_reference"/>
<js-module src="www/android_ios/document_snapshot.js" name="document_snapshot"/>
<js-module src="www/android_ios/query_snapshot.js" name="query_snapshot"/>
<js-module src="www/android_ios/query_document_snapshot.js" name="query_document_snapshot"/>
<js-module src="www/android_ios/firestore_timestamp.js" name="firestore_timestamp"/>
<js-module src="www/android_ios/transaction.js" name="transaction"/>
<js-module src="www/android_ios/batch.js" name="batch"/>
<js-module src="www/android_ios/utilities.js" name="utilities"/>
<js-module src="www/android_ios/geo_point.js" name="geo_point" />
<js-module src="www/android_ios/path.js" name="path" />
<js-module src="www/android_ios/utils.js" name="utils" />
<config-file target="config.xml" parent="/*">
<feature name="Firestore">
<param name="ios-package" value="FirestorePlugin" onload="true"/>
</feature>
</config-file>
<podspec>
<config>
<source url="https://github.com/CocoaPods/Specs.git"/>
</config>
<pods use-frameworks="true">
<pod name="FirebaseFirestore" />
</pods>
</podspec>
<header-file src="src/ios/FirestorePlugin.h"/>
<source-file src="src/ios/FirestorePlugin.m"/>
<header-file src="src/ios/FirestorePluginJSONHelper.h"/>
<source-file src="src/ios/FirestorePluginJSONHelper.m"/>
<header-file src="src/ios/FirestorePluginResultHelper.h"/>
<source-file src="src/ios/FirestorePluginResultHelper.m"/>
<header-file src="src/ios/FirestoreTransaction.h"/>
<source-file src="src/ios/FirestoreTransaction.m"/>
</platform>
</plugin>