feat(facebook): add activateApp function (#3234)

Added facebook4 plugin's activateApp method to manually start capturing events #3218
This commit is contained in:
Akshay Dwivedi 2019-11-19 16:35:53 +08:00 committed by Daniel Sogl
parent 499cc5c075
commit 3440dca70f

View File

@ -306,4 +306,13 @@ export class Facebook extends IonicNativePlugin {
getDeferredApplink(): Promise<string> {
return;
}
/**
* Manually log activation events
* @returns {Promise<any>}
*/
@Cordova()
activateApp(): Promise<any> {
return;
}
}