iOS System.IO.FileNotFoundException: Could not load file or assembly 'FFImageLoading.Transformations' or one of its dependencies
See original GitHub issueVery similar to issue #170 except I’m calling the init in AppDelegate.cs.
` [Register (“AppDelegate”)] public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate { public override bool FinishedLaunching (UIApplication app, NSDictionary options) { CachedImageRenderer.Init ();
global::Xamarin.Forms.Forms.Init ();
Microsoft.WindowsAzure.MobileServices.CurrentPlatform.Init ();
LoadApplication (new App ());
return base.FinishedLaunching (app, options);
}
}`
I’ve tried to uninstall and re-install all FFImageLoading packages and dependencies (because I saw it suggested elsewhere) from the common project and iOS project but didn’t help.
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
iOS System.IO.FileNotFoundException: Could not load file ...
Im running iOS 9.3. ... IO.FileNotFoundException: Could not load file or assembly 'FFImageLoading.Forms' or one of its dependencies #170.
Read more >System.IO.FileNotFoundException: Could not load file or ...
Could not load file or assembly 'X' or one of its dependencies ... Most likely it fails to load another dependency. you could...
Read more >Could not load file or assembly 'Xamarin.Forms.Core, ...
Message: Test method UnitTestProject1.UnitTest1.TestMethod1 threw exception: System.IO.FileNotFoundException: Could not load file or assembly ' ...
Read more >Could not load assembly 'Telerik.XamarinForms.SkiaSharp
Hi All, I have installed a licensed version of Telerik.XamarinFroms. ... IO.FileNotFoundException: Could not load assembly 'Telerik.
Read more >System.IO.FileNotFoundException: 'Could not load file or ...
I have an application in .net core. the application was running fine, but the error started coming after I installed.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@tomcrusader @snaderi
CachedImageRenderer.Init();
in a platform specific project (important):@molinch We could add something like
Transformations.Init();
for such cases.I solved by adding a reference to missing type before
LoadApplication
as in https://github.com/UXDivers/Grial-UI-Kit-Support/issues/52