You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Packages/io.chainsafe.web3-unity/Runtime/Plugins/Countly SDK/Plugins/CountlySDK/Models/CountlyConfiguration.cs
-20Lines changed: 0 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -16,123 +16,103 @@ public class CountlyConfiguration
16
16
/// URL of the Countly server to submit data to.
17
17
/// Mandatory field.
18
18
/// </summary>
19
-
[Obsolete("ServerUrl is deprecated. Use CountlyConfiguration(string appKey, string serverUrl) instead.")]
20
19
publicstringServerUrl=null;
21
20
22
21
/// <summary>
23
22
/// App key for the application being tracked.
24
23
/// Mandatory field.
25
24
/// </summary>
26
-
[Obsolete("AppKey is deprecated. Use CountlyConfiguration(string appKey, string serverUrl) instead.")]
27
25
publicstringAppKey=null;
28
26
29
27
/// <summary>
30
28
/// Unique ID for the device the app is running on.
31
29
/// </summary>
32
-
[Obsolete("DeviceId is deprecated. Use SetDeviceId(string deviceId) instead.")]
33
30
publicstringDeviceId=null;
34
31
35
32
/// <summary>
36
33
/// Set to prevent parameter tampering.
37
34
/// </summary>
38
-
[Obsolete("Salt is deprecated. Use SetParameterTamperingProtectionSalt(string salt) instead.")]
39
35
publicstringSalt=null;
40
36
41
37
/// <summary>
42
38
/// Set to send all requests made to the Countly server using HTTP POST.
43
39
/// </summary>
44
-
[Obsolete("EnablePost is deprecated. Use EnableForcedHttpPost() instead.")]
45
40
publicboolEnablePost=false;
46
41
47
42
/// <summary>
48
43
/// Set to true if you want the SDK to pretend that it's functioning.
49
44
/// </summary>
50
-
[Obsolete("EnableTestMode is deprecated. This is going to be removed in the future.")]
51
45
publicboolEnableTestMode=false;
52
46
53
47
/// <summary>
54
48
/// Set to true if you want to enable countly internal debugging logs.
55
49
/// </summary>
56
-
[Obsolete("EnableConsoleLogging is deprecated. Use EnableLogging() instead.")]
57
50
publicboolEnableConsoleLogging=false;
58
51
59
52
/// <summary>
60
53
/// Set mode of push notification.
61
54
/// </summary>
62
-
[Obsolete("NotificationMode is deprecated. Use SetNotificationMode(TestMode mode) instead.")]
63
55
publicTestModeNotificationMode=TestMode.None;
64
56
65
57
/// <summary>
66
58
/// Set to true to enable manual session handling.
67
59
/// </summary>
68
-
[Obsolete("EnableManualSessionHandling is deprecated. This is going to be removed in the future.")]
0 commit comments