forked from chemerisuk/cordova-plugin-firebase-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
63 lines (50 loc) · 2.33 KB
/
Copy pathplugin.xml
File metadata and controls
63 lines (50 loc) · 2.33 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
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-firebase-config"
version="7.0.3">
<name>cordova-plugin-firebase-config</name>
<description>Cordova plugin for Firebase Remote Config</description>
<license>MIT</license>
<keywords>cordova</keywords>
<repo>https://github.com/chemerisuk/cordova-plugin-firebase-config</repo>
<issue>https://github.com/chemerisuk/cordova-plugin-firebase-config/issues</issue>
<js-module src="www/FirebaseConfig.js" name="FirebaseConfig">
<merges target="cordova.plugins.firebase.config" />
</js-module>
<engines>
<engine name="cordova" version=">=10.0.0"/>
<engine name="cordova-android" version=">=11.0.0"/>
<engine name="cordova-ios" version=">=6.0.0"/>
</engines>
<platform name="ios">
<preference name="IOS_FIREBASE_POD_VERSION" default="9.3.0" />
<config-file target="config.xml" parent="/*">
<feature name="FirebaseConfig">
<param name="ios-package" value="FirebaseConfigPlugin" />
</feature>
</config-file>
<header-file src="src/ios/FirebaseConfigPlugin.h" />
<source-file src="src/ios/FirebaseConfigPlugin.m" />
<podspec>
<config>
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods use-frameworks="true">
<pod name="Firebase/RemoteConfig" spec="$IOS_FIREBASE_POD_VERSION" />
</pods>
</podspec>
</platform>
<platform name="android">
<preference name="ANDROID_FIREBASE_BOM_VERSION" default="30.3.1" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="FirebaseConfig">
<param name="android-package" value="by.chemerisuk.cordova.firebase.FirebaseConfigPlugin" />
</feature>
</config-file>
<dependency id="cordova-support-android-plugin" version="~2.0.4" />
<framework src="platform('com.google.firebase:firebase-bom:$ANDROID_FIREBASE_BOM_VERSION')" />
<framework src="com.google.firebase:firebase-config" />
<source-file src="src/android/FirebaseConfigPlugin.java"
target-dir="src/by/chemerisuk/cordova/firebase/" />
</platform>
</plugin>