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: libs/SalesforceSDK/src/com/salesforce/androidsdk/app/SalesforceSDKManager.java
+27
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,7 @@
48
48
importandroid.webkit.CookieManager;
49
49
50
50
importandroidx.annotation.NonNull;
51
+
importandroidx.annotation.Nullable;
51
52
importandroidx.lifecycle.Lifecycle;
52
53
importandroidx.lifecycle.LifecycleObserver;
53
54
importandroidx.lifecycle.OnLifecycleEvent;
@@ -100,6 +101,7 @@
100
101
importjava.util.SortedSet;
101
102
importjava.util.UUID;
102
103
importjava.util.concurrent.ConcurrentSkipListSet;
104
+
importjava.util.regex.Pattern;
103
105
104
106
/**
105
107
* This class serves as an interface to the various
@@ -181,6 +183,9 @@ public class SalesforceSDKManager implements LifecycleObserver {
181
183
privatebooleanuseWebServerAuthentication = true; // web server flow ON by default - but app can opt out by calling setUseWebServerAuthentication(false)
182
184
183
185
privatebooleanuseHybridAuthentication = true; // hybrid authentication flows ON by default - but app can opt out by calling setUseHybridAuthentication(false)
186
+
187
+
privatePatterncustomDomainInferencePattern;
188
+
184
189
privateThemetheme = Theme.SYSTEM_DEFAULT;
185
190
privateStringappName;
186
191
@@ -672,6 +677,28 @@ public synchronized void setUseHybridAuthentication(boolean useHybridAuthenticat
0 commit comments