-
Notifications
You must be signed in to change notification settings - Fork 44
/
plugin.xml
112 lines (99 loc) · 4.51 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.adjust.sdk"
version="5.0.3">
<name>Adjust</name>
<description>Adjust plugin for Cordova</description>
<license>MIT License</license>
<keywords>adjust</keywords>
<author>adjust</author>
<engines>
<engine name="cordova-android" version=">=4.0.0" />
<engine name="cordova-ios" version=">=3.0.0" />
</engines>
<js-module src="www/adjust.js" name="Adjust">
<clobbers target="Adjust" />
</js-module>
<js-module src="www/adjust_config.js" name="AdjustConfig">
<clobbers target="AdjustConfig" />
</js-module>
<js-module src="www/adjust_event.js" name="AdjustEvent">
<clobbers target="AdjustEvent" />
</js-module>
<js-module src="www/adjust_app_store_subscription.js" name="AdjustAppStoreSubscription">
<clobbers target="AdjustAppStoreSubscription" />
</js-module>
<js-module src="www/adjust_play_store_subscription.js" name="AdjustPlayStoreSubscription">
<clobbers target="AdjustPlayStoreSubscription" />
</js-module>
<js-module src="www/adjust_third_party_sharing.js" name="AdjustThirdPartySharing">
<clobbers target="AdjustThirdPartySharing" />
</js-module>
<js-module src="www/adjust_ad_revenue.js" name="AdjustAdRevenue">
<clobbers target="AdjustAdRevenue" />
</js-module>
<js-module src="www/adjust_app_store_purchase.js" name="AdjustAppStorePurchase">
<clobbers target="AdjustAppStorePurchase" />
</js-module>
<js-module src="www/adjust_play_store_purchase.js" name="AdjustPlayStorePurchase">
<clobbers target="AdjustPlayStorePurchase" />
</js-module>
<js-module src="www/adjust_deeplink.js" name="AdjustDeeplink">
<clobbers target="AdjustDeeplink" />
</js-module>
<!-- Android -->
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<receiver
android:name="com.adjust.sdk.AdjustReferrerReceiver"
android:permission="android.permission.INSTALL_PACKAGES"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
</config-file>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Adjust">
<param name="android-package" value="com.adjust.sdk.AdjustCordova"/>
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/AdjustCordova.java" target-dir="src/com/adjust/sdk" />
<source-file src="src/android/AdjustCordovaUtils.java" target-dir="src/com/adjust/sdk" />
<framework src="com.adjust.sdk:adjust-android:5.0.2"/>
<framework src="com.google.android.gms:play-services-ads-identifier:18.0.1" />
<framework src="com.android.installreferrer:installreferrer:2.2" />
</platform>
<!-- iOS -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Adjust">
<param name="ios-package" value="AdjustCordova"/>
<param name="onload" value="true" />
</feature>
<preference name="deployment-target" value="12.0" />
</config-file>
<header-file src="src/ios/AdjustCordova.h" />
<source-file src="src/ios/AdjustCordova.m" />
<header-file src="src/ios/AdjustCordovaDelegate.h" />
<source-file src="src/ios/AdjustCordovaDelegate.m" />
<podspec>
<config>
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods>
<pod name="Adjust" spec="5.0.1" />
</pods>
</podspec>
<framework src="AdSupport.framework" weak="true" />
<framework src="StoreKit.framework" weak="true" />
<framework src="AdServices.framework" weak="true" />
<framework src="AppTrackingTransparency.framework" weak="true" />
</platform>
</plugin>