If I try to log an event (in android) and I get following error:
{"app42Fault":{"httpErrorCode":400,"appErrorCode":1402,"message":"Bad Request","details":"The resource that is being accessed is disabled"}}
I have enabled the service:
App42API.initialize(this, "...", "...");
App42API.enableEventService(true);
App42API.enableAppStateEventTracking(true);
mEventService = App42API.buildEventService();
And my key has all Log and Event authorisations
The error appears if I try to track an event...
mEventService.trackEvent(message, properties, callback);
And I use App42_ANDROID_SDK_3.2...