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
@@ -337,6 +336,7 @@ class MainApplication : FoxApplication(), Configuration.Provider {
337
336
Timber.w("ANDROIDACY_CLIENT_ID is empty, disabling AndroidacyRepoData 1")
338
337
editor.apply()
339
338
}
339
+
getMarkwon()
340
340
}
341
341
342
342
privateval intent:Intent?
@@ -538,44 +538,12 @@ class MainApplication : FoxApplication(), Configuration.Provider {
538
538
val mContext:Context?=INSTANCE
539
539
name +="x"
540
540
if (mSharedPrefs ==null) {
541
-
Timber.d("Creating shared prefs map")
542
541
mSharedPrefs =HashMap()
543
542
}
544
-
/*
545
-
this part is only here because with added encryption, parts of code that were previously calling this over and over again or on each invocation of a method are causing performance issues.
546
-
*/
547
-
if (BuildConfig.DEBUG) {
548
-
// get file, function, and line number
549
-
val stackTrace =Thread.currentThread().stackTrace
550
-
// get the caller of this method
551
-
val caller = stackTrace[3]
552
-
Timber.d(
553
-
"Shared prefs file: %s, caller: %s:%d in %s",
554
-
name,
555
-
caller.fileName,
556
-
caller.lineNumber,
557
-
caller.methodName
558
-
)
559
-
// add the caller to an array. if the last 3 callers are the same, then we are in a loop, log at error level
0 commit comments