-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
53 lines (47 loc) · 2.34 KB
/
Copy pathplugin.xml
File metadata and controls
53 lines (47 loc) · 2.34 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-firebase"
version="0.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>Cordova Firebase</name>
<description>Cordova Firebase Plugin</description>
<author>SteveLee</author>
<license>MIT</license>
<keywords>cordova, cordova plugin, cordova google firebase, firebase
</keywords>
<repo>https://github.com/steveleetn91/cordova-firebase.git</repo>
<issue>https://github.com/steveleetn91/cordova-firebase.git/issues</issue>
<engines>
<engine name="cordova" version=">=4.0" />
</engines>
<platform name="android">
<framework src="build-extras.gradle" custom="true" type="gradleReference" />
<hook type="before_plugin_install" src="scripts/android/after_plugin_install.sh" />
<config-file target="config.xml" parent="/*">
<feature name="CordovaFirebase">
<param name="android-package" value="org.apache.cordova.CordovaFirebase" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="native/android/CordovaFirebase.java" target-dir="org/apache/cordova" />
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="CordovaFirebase">
<param name="ios-package" value="CordovaFirebase" />
<param name="onload" value="true" />
</feature>
<source-file src="GoogleService-Info.plist" />
</config-file>
<header-file src="native/ios/CordovaFirebase.h" />
<source-file src="native/ios/CordovaFirebase.m" />
<podspec>
<pods use-frameworks="true">
<pod name="FirebaseCore" git="https://github.com/firebase/firebase-ios-sdk.git"
branch="release-10.8" configurations="Debug,Release"/>
<pod name="FirebaseAnalytics" git="https://github.com/firebase/firebase-ios-sdk.git"
branch="release-10.8" configurations="Debug,Release"/>
<pod name="GoogleAppMeasurement" git="https://github.com/firebase/firebase-ios-sdk.git"
branch="release-10.8" configurations="Debug,Release"/>
</pods>
</podspec>
</platform>
</plugin>