Closed ZDiyanov closed 4 years ago
Update: Using setInterval
and checking if the logEvent
method is not undefined
seems to fix the issue on Android, the issue persists on iOS.
Update: The issue was solved, I was using an improper format for the parameters. There's a check for Android that prevents the issue by not including the parameters if there's no parameter value:
if (param.value !== undefined) {
bundle.putString(param.key, param.value);
}
I don't think this check is there for iOS, so the build fails.
I'm following the demo for Vue in the respective repo directory. I'm trying to use the 'logEvent' from a Vue.js mixin method in the 'created' lifecicle hook of a view. The issue is present on both iOS and Android, the CLI returns the following when running for iOS:
and on
tns run android
: