Hi,
We enable on our app the use of cache for the maps views, so we are using the following code to activate this option:
ArcGISEnvironment.urlSession = ArcGISURLSession {
let defaultConfig = URLSessionConfiguration.default
defaultConfig.requestCachePolicy = .returnCacheDataElseLoad
return defaultConfig
}While analyzing the app in Profile mode on Xcode, we noticed that this configuration causes a memory leak each time the map is loaded. Below is the error displayed in the Xcode Profile:


We would like to confirm with you whether this is the correct way to set up the cache configuration. Additionally, do you have any insights into what might be causing the issue with the map when it loads for the first time?
Thanks,