forked from Adobe-Marketing-Cloud/mobile-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
54 lines (49 loc) · 2.6 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="adobe-mobile-services"
version="4.20.1">
<name>ADBMobile</name>
<description>Adobe Mobile Services Plugin
Important: After August 31, 2021, customers can continue to download and use the version 4 SDKs, but there will be no Customer Care support or access to forums. The Adobe Experience Platform Mobile SDK (previously referred to as v5) will exclusively support upcoming Adobe Experience Cloud features and functionality. Please see 4x SDK end of support FAQ at https://aep-sdks.gitbook.io/docs/version-4-sdk-end-of-support-faq
</description>
<js-module src="sdks/Cordova/ADBMobile/Shared/ADB_Helper.js" name="ADB">
<clobbers target="ADB"/>
</js-module>
<engines>
<engine name="cordova-android" version=">=7.0.0"/>
</engines>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="ADBMobile_PhoneGap">
<param name="ios-package" value="ADBMobile_PhoneGap" onload="true" />
</feature>
</config-file>
<header-file src="sdks/Cordova/ADBMobile/iOS/ADBMobile_PhoneGap.h" />
<source-file src="sdks/Cordova/ADBMobile/iOS/ADBMobile_PhoneGap.m" />
<header-file src="sdks/iOS/AdobeMobileLibrary/legacy/ADBMobile.h" />
<source-file src="sdks/iOS/AdobeMobileLibrary/legacy/AdobeMobileLibrary.a" framework="true" />
<framework src="libsqlite3.dylib" />
<framework src="SystemConfiguration.framework" />
<framework src="WebKit.framework" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ADBMobile_PhoneGap">
<param name="android-package" value="com.adobe.ADBMobile_PhoneGap" onload="true" />
<param name="onload" value="true" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.adobe.mobile.MessageFullScreenActivity" android:theme="@android:style/Theme.Translucent" />
<receiver android:name="com.adobe.mobile.MessageNotificationHandler" />
</config-file>
<source-file src="sdks/Cordova/ADBMobile/Android/ADBMobile_PhoneGap.java" target-dir="src/com/adobe/" />
<source-file src="sdks/Android/AdobeMobileLibrary/adobeMobileLibrary-4.18.2.jar" target-dir="app/libs" />
</platform>
</plugin>