-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALSdkSettings.h
38 lines (32 loc) · 939 Bytes
/
ALSdkSettings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// ALSdkSettings.h
//
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
* This class contains settings for AppLovin SDK.
*
* @version 1.0
*/
@interface ALSdkSettings : NSObject
/**
* Toggle verbose logging of AppLovin SDK.
*
* If enabled AppLovin messages will appear in standard application log accessible via logcat.
* All log messages will have "AppLovinSdk" tag.
*
* Verbose logging is <i>disabled</i> by default.
*
* @param isVerboseLoggingEnabled True if log messages should be output.
*/
@property (assign, atomic) BOOL isVerboseLogging;
/**
* Defines sizes of ads that should be automatically preloaded.
* <p>
* Auto preloading is enabled for <i>BANNER,INTER</i> by default.
*
* @param autoPreloadAdSizes Comma-separated list of sizes to preload. For example: "BANNER,INTER"
*/
@property (strong, atomic) NSString * autoPreloadAdSizes;
@end