-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathplugin.xml
More file actions
34 lines (26 loc) · 1.16 KB
/
plugin.xml
File metadata and controls
34 lines (26 loc) · 1.16 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
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-firebase-hooks"
version="0.9.6">
<name>FirebaseHooks</name>
<description>Cordova firebase plugin starter</description>
<license>MIT</license>
<keywords>cordova</keywords>
<repo>https://github.com/chemerisuk/cordova-plugin-firebase-hooks</repo>
<issue>https://github.com/chemerisuk/cordova-plugin-firebase-hooks/issues</issue>
<engines>
<engine name="cordova" version=">=3.5.0"/>
</engines>
<dependency id="cordova-plugin-cocoapod-support"/>
<platform name="ios">
<config-file parent="FirebaseAppDelegateProxyEnabled" target="*-Info.plist">
<true />
</config-file>
<pods-config ios-min-version="7.0" uses-frameworks="true"/>
<hook type="after_prepare" src="hooks/ios/copy-google-services.js" />
</platform>
<platform name="android">
<framework src="src/android/build.gradle" custom="true" type="gradleReference" />
<hook type="after_prepare" src="hooks/android/copy-google-services.js" />
</platform>
</plugin>