mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-13 16:38:08 -05:00
25 lines
782 B
Objective-C
25 lines
782 B
Objective-C
//
|
|
// GoogleAnalyticsPlugin.h
|
|
// Google Analytics plugin for PhoneGap
|
|
//
|
|
// Created by Jesse MacFadyen on 11-04-21.
|
|
// Updated to 1.x by Olivier Louvignes on 11-11-24.
|
|
// Updated to 1.5 by Chris Kihneman on 12-04-09.
|
|
// MIT Licensed
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <Cordova/CDVPlugin.h>
|
|
#import "GANTracker.h"
|
|
|
|
@interface GoogleAnalyticsPlugin : CDVPlugin <GANTrackerDelegate> {
|
|
|
|
}
|
|
|
|
- (void) startTrackerWithAccountID:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
- (void) trackEvent:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
- (void) setCustomVariable:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
- (void) trackPageview:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
|
|
@end
|