-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplugin.xml
66 lines (50 loc) · 2.84 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
58
59
60
61
62
63
64
65
66
<?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="cordova-background-geolocation-firebase"
version="0.3.0">
<name>CDVBackgroundGeolocationFirebase</name>
<description>Cordova Background Geolocation -- Firebase Adapter</description>
<license>MIT</license>
<repo>https://github.com/transistorsoft/cordova-background-geolocation-firebase</repo>
<issue>https://github.com/transistorsoft/cordova-background-geolocation-firebase/issues</issue>
<keywords>phonegap,cordova,background geolocation,firebase</keywords>
<engines>
<engine name="cordova" version=">=7.1.0" />
<engine name="cordova-android" version=">=7.0.0"/>
<engine name="cordova-ios" version=">=4.4.0"/>
</engines>
<js-module src="www/BackgroundGeolocationFirebase.js" name="BackgroundGeolocationFirebase">
<clobbers target="window.BackgroundGeolocationFirebase" />
</js-module>
<config-file target="config.xml" parent="/*">
<preference name="GradlePluginGoogleServicesEnabled" value="true" />
<preference name="GradlePluginGoogleServicesVersion" value="4.2.0" />
</config-file>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="BackgroundGeolocationFirebase">
<param name="ios-package" value="CDVBackgroundGeolocationFirebase"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<framework src="Firebase/Core" type="podspec" spec="" />
<framework src="Firebase/Firestore" type="podspec" spec="" />
<source-file src="src/ios/CDVBackgroundGeolocationFirebase.m" />
<header-file src="src/ios/CDVBackgroundGeolocationFirebase.h" />
</platform>
<platform name="android">
<preference name="FIREBASE_CORE_VERSION" default="18.0.0" />
<framework src="com.google.firebase:firebase-core:$FIREBASE_CORE_VERSION" />
<preference name="FIREBASE_FIRESTORE_VERSION" default="22.0.0" />
<framework src="com.google.firebase:firebase-firestore:$FIREBASE_FIRESTORE_VERSION" />
<resource-file src="src/android/libs/com/transistorsoft/tsfirebaseproxy" target="../../libs/com/transistorsoft/tsfirebaseproxy" />
<source-file src="src/android/CDVBackgroundGeolocationFirebase.java" target-dir="src/com/transistorsoft/cordova/bggeo" />
<framework src="src/android/build.gradle" custom="true" type="gradleReference" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="BackgroundGeolocationFirebase">
<param name="android-package" value="com.transistorsoft.cordova.bggeo.CDVBackgroundGeolocationFirebase"/>
</feature>
</config-file>
</platform>
</plugin>