forked from arnesson/cordova-plugin-firebase
-
Notifications
You must be signed in to change notification settings - Fork 38
/
plugin.xml
120 lines (104 loc) · 6.23 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
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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-firebase" version="0.2.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Firebase Plugin</name>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.2.0" />
</engines>
<js-module name="FirebasePlugin" src="www/firebase.js">
<clobbers target="fp" />
</js-module>
<hook type="before_plugin_install" src="scripts/shared/installDependencies.js" />
<hook type="before_plugin_install" src="scripts/shared/unzipAndCopyConfigurations.js" />
<hook type="before_plugin_install" src="scripts/shared/unzipAndCopySound.js" />
<preference name="APP_DOMAIN" default="/" />
<preference name="APP_PATH" default="/" />
<platform name="android">
<hook type="after_plugin_install" src="scripts/android/after_plugin_install.js" />
<hook type="before_plugin_uninstall" src="scripts/android/before_plugin_uninstall.js" />
<config-file parent="/*" target="res/xml/config.xml">
<feature name="FirebasePlugin">
<param name="android-package" value="org.apache.cordova.firebase.FirebasePlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<service android:enabled="true" android:exported="false" android:name="com.google.android.gms.measurement.AppMeasurementService" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application/activity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="$APP_DOMAIN" android:pathPrefix="$APP_PATH"/>
<data android:scheme="https" android:host="$APP_DOMAIN" android:pathPrefix="$APP_PATH"/>
</intent-filter>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<service android:name="org.apache.cordova.firebase.FirebasePluginMessagingService" android:stopWithTask="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<receiver android:name="org.apache.cordova.firebase.OnNotificationOpenReceiver"></receiver>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<meta-data android:name="com.google.firebase.messaging.default_notification_channel_id" android:value="@string/default_notification_channel_id"/>
</config-file>
<resource-file src="google-services.json" target="./google-services.json" />
<resource-file src="src/android/cordova-plugin-firebase-strings.xml" target="res/values/cordova-plugin-firebase-strings.xml" />
<resource-file src="src/android/cordova-plugin-firebase-colors.xml" target="res/values/cordova-plugin-firebase-colors.xml" />
<source-file src="src/android/FirebasePlugin.java" target-dir="src/org/apache/cordova/firebase" />
<source-file src="src/android/OnNotificationOpenReceiver.java" target-dir="src/org/apache/cordova/firebase" />
<source-file src="src/android/FirebasePluginMessagingService.java" target-dir="src/org/apache/cordova/firebase" />
<source-file src="src/android/FirebasePluginMessageReceiver.java" target-dir="src/org/apache/cordova/firebase" />
<source-file src="src/android/FirebasePluginMessageReceiverManager.java" target-dir="src/org/apache/cordova/firebase" />
<framework src="src/android/build.gradle" custom="true" type="gradleReference" />
<framework src="com.google.gms:google-services:4.3.4" />
<framework src="com.google.firebase:firebase-analytics:18.0.1" />
<framework src="com.google.firebase:firebase-auth:20.0.2" />
<framework src="com.google.firebase:firebase-crashlytics:17.3.0" />
<framework src="com.google.firebase:firebase-crashlytics-ndk:17.3.0" />
<framework src="com.google.firebase:firebase-messaging:21.0.1" />
<framework src="com.google.firebase:firebase-config:20.0.2" />
<framework src="com.google.firebase:firebase-perf:19.1.0" />
<framework src="com.google.firebase:firebase-dynamic-links:19.1.1" />
<!-- <framework src="com.google.firebase:firebase-iid:18.0.0" /> -->
</platform>
<platform name="ios">
<hook type="after_plugin_install" src="scripts/ios/after_plugin_install.js" />
<hook type="before_plugin_uninstall" src="scripts/ios/before_plugin_uninstall.js" />
<hook type="after_prepare" src="scripts/ios/after_prepare.js" />
<config-file parent="/*" target="config.xml">
<feature name="FirebasePlugin">
<param name="ios-package" value="FirebasePlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<config-file parent="aps-environment" target="*/Entitlements-Debug.plist">
<string>development</string>
</config-file>
<config-file parent="aps-environment" target="*/Entitlements-Release.plist">
<string>production</string>
</config-file>
<resource-file src="GoogleService-Info.plist" target="./GoogleService-Info.plist" />
<header-file src="src/ios/AppDelegate+FirebasePlugin.h" />
<source-file src="src/ios/AppDelegate+FirebasePlugin.m" />
<header-file src="src/ios/FirebasePlugin.h" />
<source-file src="src/ios/FirebasePlugin.m" />
<framework src="Firebase" type="podspec" spec="~> 6.33.0" />
<framework src="FirebaseCore" type="podspec" spec="~> 6.10.3" />
<framework src="FirebaseCrashlytics" type="podspec" spec="~> 4.6.1" />
<framework src="FirebaseMessaging" type="podspec" spec="~> 4.7.0" />
<framework src="FirebaseAuth" type="podspec" spec="~> 6.9.2" />
<framework src="FirebaseRemoteConfig" type="podspec" spec="~> 4.9.0" />
<framework src="FirebasePerformance" type="podspec" spec="~> 3.3.0" />
</platform>
</plugin>