blob: 7a97cb2f4e64e1fe29ecd3356f8d1b7dcdb667b6 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
//
// Constants.java
// Adjust
//
// Created by keyboardsurfer on 2013-11-08.
// Copyright (c) 2012-2014 adjust GmbH. All rights reserved.
// See the file MIT-LICENSE for copying permission.
//
package com.adjust.sdk;
import java.util.Arrays;
import java.util.List;
/**
* @author keyboardsurfer
* @since 8.11.13
*/
public interface Constants {
int ONE_SECOND = 1000;
int ONE_MINUTE = 60 * ONE_SECOND;
int THIRTY_MINUTES = 30 * ONE_MINUTE;
int CONNECTION_TIMEOUT = Constants.ONE_MINUTE;
int SOCKET_TIMEOUT = Constants.ONE_MINUTE;
String BASE_URL = "https://app.adjust.com";
String SCHEME = "https";
String AUTHORITY = "app.adjust.com";
String CLIENT_SDK = "android4.0.0";
String LOGTAG = "Adjust";
String ACTIVITY_STATE_FILENAME = "AdjustIoActivityState";
String ATTRIBUTION_FILENAME = "AdjustAttribution";
String MALFORMED = "malformed";
String SMALL = "small";
String NORMAL = "normal";
String LONG = "long";
String LARGE = "large";
String XLARGE = "xlarge";
String LOW = "low";
String MEDIUM = "medium";
String HIGH = "high";
String REFERRER = "referrer";
String ENCODING = "UTF-8";
String MD5 = "MD5";
String SHA1 = "SHA-1";
// List of known plugins, possibly not active
List<String> PLUGINS = Arrays.asList();
}
|