-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplugin.xml
49 lines (36 loc) · 1.86 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
<?xml version="1.0" encoding="UTF-8" ?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-analytics-adid" version="1.5.1">
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<name>Google Analytics Plugin with Advertising Id</name>
<description>Google Analytics Phonegap, Cordova, Intel XDK plugin for iOS/Android with Advertising Id Collection enabled</description>
<author email="[email protected]" href="https://github.com/appfeel/admob-google-cordova">AppFeel</author>
<license>MIT</license>
<keywords>analytics,google,metrics,event,screen,ua,universal analytics,universal,referral,download,install</keywords>
<repo>https://github.com/appfeel/analytics-google-idfa.git</repo>
<issue>https://github.com/appfeel/analytics-google-idfa/issues</issue>
<dependency id="cordova-plugin-analytics" commit="4c67c1255d29da8099d4c6500d4e210df998f08e"/>
<js-module src="www/analytics.js" name="GAPluginAdId">
<merges target="analytics" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="GAPluginAdId">
<param name="android-package" value="com.appfeel.cordova.analytics.adid.CPGoogleAnalyticsAdId" />
</feature>
</config-file>
<source-file src="src/android/CPGoogleAnalyticsAdId.java" target-dir="src/com/appfeel/cordova/analytics/adid" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="GAPluginAdId">
<param name="ios-package" value="CDVGoogleAnalyticsAdId" />
</feature>
</config-file>
<header-file src="src/ios/CDVGoogleAnalyticsAdId.h" />
<source-file src="src/ios/CDVGoogleAnalyticsAdId.m" />
<source-file src="src/ios/libAdIdAccess.a" framework="true" />
<framework src="AdSupport.framework" />
</platform>
</plugin>