forked from chemerisuk/cordova-plugin-firebase-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
87 lines (69 loc) · 3.52 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
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-firebase-analytics"
version="4.4.1">
<name>FirebaseAnalyticsPlugin</name>
<description>Cordova plugin for Firebase Analytics</description>
<license>MIT</license>
<keywords>cordova</keywords>
<repo>https://github.com/chemerisuk/cordova-plugin-firebase-analytics</repo>
<issue>https://github.com/chemerisuk/cordova-plugin-firebase-analytics/issues</issue>
<js-module src="www/FirebaseAnalytics.js" name="FirebaseAnalytics">
<merges target="cordova.plugins.firebase.analytics" />
</js-module>
<engines>
<engine name="cordova" version=">=9.0.0"/>
<engine name="cordova-android" version=">=8.0.0"/>
<engine name="cordova-ios" version=">=5.0.0"/>
</engines>
<preference name="FIREBASE_ANALYTICS_COLLECTION_ENABLED" default="true" />
<platform name="ios">
<preference name="IOS_FIREBASE_ANALYTICS_VERSION" default="~> 7.0"/>
<config-file target="config.xml" parent="/*">
<feature name="FirebaseAnalytics">
<param name="ios-package" value="FirebaseAnalyticsPlugin" />
<param name="onload" value="$FIREBASE_ANALYTICS_COLLECTION_ENABLED" />
</feature>
</config-file>
<!--
use a bit hacky method to set boolean value as a string:
https://developer.apple.com/documentation/foundation/nsstring/1409420-boolvalue?preferredLanguage=occ
-->
<config-file target="*-Info.plist" parent="FIREBASE_ANALYTICS_COLLECTION_ENABLED">
<string>$FIREBASE_ANALYTICS_COLLECTION_ENABLED</string>
</config-file>
<header-file src="src/ios/FirebaseAnalyticsPlugin.h" />
<source-file src="src/ios/FirebaseAnalyticsPlugin.m" />
<podspec>
<config>
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods>
<pod name="Firebase/Analytics" spec="~> 7.0" />
</pods>
</podspec>
</platform>
<platform name="android">
<preference name="ANDROID_FIREBASE_ANALYTICS_VERSION" default="17.5.+"/>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="FirebaseAnalytics">
<param name="android-package" value="by.chemerisuk.cordova.firebase.FirebaseAnalyticsPlugin" />
<param name="onload" value="$FIREBASE_ANALYTICS_COLLECTION_ENABLED" />
</feature>
</config-file>
<config-file target="config.xml" parent="/*">
<preference name="GradlePluginGoogleServicesEnabled" value="true" />
<preference name="GradlePluginGoogleServicesVersion" value="4.3.3" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.INTERNET" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<meta-data android:name="firebase_analytics_collection_enabled" android:value="$FIREBASE_ANALYTICS_COLLECTION_ENABLED" />
</config-file>
<dependency id="cordova-support-android-plugin" version="~1.0.0"/>
<framework src="com.google.firebase:firebase-analytics:$ANDROID_FIREBASE_ANALYTICS_VERSION" />
<source-file src="src/android/FirebaseAnalyticsPlugin.java"
target-dir="src/by/chemerisuk/cordova/firebase/" />
</platform>
</plugin>