@@ -67,6 +67,23 @@ static NSString * const AIEnvironmentProduction = @"production";
6767+ (void )trackRevenue : (double )amountInCents forEvent : (NSString *)eventToken ;
6868+ (void )trackRevenue : (double )amountInCents forEvent : (NSString *)eventToken withParameters : (NSDictionary *)parameters ;
6969
70+ /* *
71+ * Change the verbosity of AdjustIo's logs.
72+ *
73+ * You can increase or reduce the amount of logs from AdjustIo by passing
74+ * one of the following parameters. Use Log.ASSERT to disable all logging.
75+ *
76+ * @param logLevel The desired minimum log level (default: info)
77+ * Must be one of the following:
78+ * - AILogLevelVerbose (enable all logging)
79+ * - AILogLevelDebug (enable more logging)
80+ * - AILogLevelInfo (the default)
81+ * - AILogLevelWarn (disable info logging)
82+ * - AILogLevelError (disable warnings as well)
83+ * - AILogLevelAssert (disable errors as well)
84+ */
85+ + (void )setLogLevel : (AILogLevel)logLevel ;
86+
7087/* *
7188 * Set the tracking environment to sandbox or production.
7289 *
@@ -88,21 +105,11 @@ static NSString * const AIEnvironmentProduction = @"production";
88105+ (void )setEventBufferingEnabled : (BOOL )enabled ;
89106
90107/* *
91- * Change the verbosity of AdjustIo's logs.
92- *
93- * You can increase or reduce the amount of logs from AdjustIo by passing
94- * one of the following parameters. Use Log.ASSERT to disable all logging.
108+ * Enable or disable tracking of the MD5 hash of the MAC address
95109 *
96- * @param logLevel The desired minimum log level (default: info)
97- * Must be one of the following:
98- * - AILogLevelVerbose (enable all logging)
99- * - AILogLevelDebug (enable more logging)
100- * - AILogLevelInfo (the default)
101- * - AILogLevelWarn (disable info logging)
102- * - AILogLevelError (disable warnings as well)
103- * - AILogLevelAssert (disable errors as well)
110+ * Disable macMd5 tracking if your privacy constraints require it.
104111 */
105- + (void )setLogLevel : (AILogLevel) logLevel ;
112+ + (void )setMacMd5TrackingEnabled : ( BOOL ) enabled ;
106113
107114// Special method used by SDK wrappers such as Adobe Air SDK.
108115+ (void )setSdkPrefix : (NSString *)sdkPrefix __attribute__((deprecated));
0 commit comments