Effective March 30, 2022, support for Adobe Experience Platform Mobile SDKs on Unity is no longer active. While you may continue using our libraries, Adobe no longer plans to update, modify, or provide support for these libraries. Please contact your Adobe CSM for detail.
The Unity Hub
application is required for development and testing. Inside of Unity Hub
, you will be required to download the Unity
app. The AEPAssurance Unity package is built using Unity version 2019.4.
Download the Unity Hub. The free version works for development and testing, but a Unity Pro license is required for distribution. See Distribution below for details.
Plugins for a Unity project use the following folder structure:
{Project}/Assets/Plugins/{Platform}
- Download ACPCore-1.0.1-Unity.zip
- Unzip
ACPCore-1.0.1-Unity.zip
- Import
ACPCore.unitypackage
via Assets->Import Package
- Download AEPAssurance-1.0.0-Unity.zip
- Unzip
AEPAssurance-1.0.0-Unity.zip
- Import
AEPAssurance.unitypackage
via Assets-Import Package
No additional steps are required for Android installation.
ACPCore 1.0.0 and above is shipped with XCFrameworks. Follow these steps to add them to the Xcode project generated when building and running for iOS platform in Unity.
- Go to File -> Project Settings -> Build System and select
New Build System
. - Download
ACPCore.xcframework
,ACPIdentity.xcframework
,ACPLifecycle.xcframework
andACPSignal.xcframework
. - Download
AEPAssurance.xcframework
. - Select the UnityFramework target -> Go to Build Phases tab -> Add the XCFrameworks downloaded in Steps 2 and 3 to
Link Binary with Libraries
. - Select the Unity-iPhone target -> Go to Build Phases tab -> Add the XCFrameworks downloaded in Steps 2 and 3 to
Link Binary with Libraries
andEmbed Frameworks
. Alternatively, selectUnity-iPhone
target -> Go toGeneral
tab -> Add the XCFrameworks downloaded in Steps 2 and 3 toFrameworks, Libraries, and Embedded Content
-> SelectEmbed and sign
option.
Note: It is required to initialize the SDK via native code inside your AppDelegate and MainApplication for iOS and Android respectively. For more information see how to initialize Assurance
using com.adobe.marketing.mobile;
using AOT;
public class MainScript : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
AEPAssurance.RegisterExtension();
}
}
string assuranceVersion = AEPAssurance.ExtensionVersion();
Note: Refer Assurance to learn more about Assurance session.
AEPAssurance.StartSession(url);
Note: Read more about Assurance Session url
Start Assurance session using Deeplink
Ensure that Assets/Plugin/Android/AndroidManifest.xml contains the following Intent-Filter in UnityPlayerActivity(or it's child class).
<activity android:name="com.unity3d.player.UnityPlayerActivity"
android:theme="@style/UnityThemeSelector">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="grifflab" />
</intent-filter>
</activity>
Note: Replace the scheme grifflab with your scheme.
Go to iOS Player setting and add your scheme under supported URL scheme.
- Open the demo app in Unity.
- Open the test runner from
Window -> General -> TestRunner
. - Click on the
PlayMode
tab. - Connect an Android or iOS device as we run the tests on a device in play mode.
- Select the platform for which the tests need to be run from
File -> Build Settings -> Platform
. - Click
Run all in player (platform)
to run the tests.
Sample App is located at unity-aepassurance/AEPAssurance/Assets/Scenes. To build demo app for specific platform follow the below instructions.
- Download ACPCore-1.0.0-Unity.zip
- Unzip
ACPCore-1.0.0-Unity.zip
- Import
ACPCore.unitypackage
via Assets->Import Package
- Make sure you have an Android device connected.
- From the menu of the
Unity
app, select File > Build Settings... - Select
Android
from the Platform window - If
Android
is not the active platform, hit the button that says Switch Platform (it will only be available if you actually need to switch active platforms) - Press the Build And Run button
- You will be asked to provide a location to save the build. Make a new directory at unity-aepassurance/AEP-Assurance/Builds (this folder is in the .gitignore file)
- Name build whatever you want and press Save
Unity
will build anapk
file and automatically deploy it to the connected device
- From the menu of the
Unity
app, select File > Build Settings... - Select
iOS
from the Platform window - If
iOS
is not the active platform, hit the button that says Switch Platform (it will only be available if you actually need to switch active platforms) - Press the Build And Run button
- You will be asked to provide a location to save the build. Make a new directory at unity-aepassurance/AEPAssurance/Builds (this folder is in the .gitignore file)
- Name build whatever you want and press Save
Unity
will create and open anXcode
project- Add XCFrameworks to the Xcode project.
- From the Xcode project run the app on a simulator.
Below is a list of additional Unity plugins from the AEP SDK suite:
Extension | GitHub | Unity Package |
---|---|---|
ACPCore | https://github.com/adobe/unity-acpcore | ACPCore |
ACPAnalytics | https://github.com/adobe/unity-acpanalytics | ACPAnalytics |
ACPUserProfile | https://github.com/adobe/unity_acpuserprofile | ACPUserProfile |
Looking to contribute to this project? Please review our Contributing guidelines prior to opening a pull request.
We look forward to working with you!
This project is licensed under the Apache V2 License. See LICENSE for more information.