Integration Instructions :
UnityProjectName/Assets
Your MainCameraScript class must implement IAppoxeeCallable in order to receive the results of the API calls.
The following code snippet shows the MainCameraScript class as step 1 - 5 explain :
using UnityEngine; using System; ... public class MainCameraScript : MonoBehaviour,IAppoxeeCallable<String> { ... private AppoxeeAndroidBridge AppoxeePlugin; //Keep as field/member in order to use the API. if Null, API calls will cause a crash in runtime. ... void OnEnable() { if (AppoxeePlugin == null) { AppoxeePlugin = AppoxeeAndroidBridge.CreateAppoxeeAndroidBridge(this, "YOUR_SDK_KEY", "YOUR_SECRET_KEY"); } } ... void Start () { // AppoxeePlugin.AppoxeeReportActivate () must be called to report that the app was activated, crucial for analytics if (AppoxeePlugin != null) AppoxeePlugin.AppoxeeReportActivate (); } ... void OnDestroy() { // AppoxeePlugin.AppoxeeReportBackground () must be called to report that the app was deactivated, crucial for analytics if (AppoxeePlugin != null) AppoxeePlugin.AppoxeeReportBackground (); } ... } |