Chris Hamons

Results 210 comments of Chris Hamons

It looks like we're dealloc a (Xamarin_Forms_Platform_iOS_PageRenderer *) self = 0x00007fca36d1f530 that is already dead I tried running zombie instruments on it and got nothing useful

This appears to be a track 1 library (based on the Microsoft.* name and lack of /t:GenerateCode support): ``` $ git grep "SCM (KUDU) site " sdk/websites/Microsoft.Azure.Management.WebSites/src/Generated/Models/Site.cs: /// stop SCM...

Manuel has a potential fix in https://github.com/xamarin/xamarin-macios/pull/15678 however it will likely stay as a draft and not land/be released if don't have a sample project reproducing the bug in question....

Are there other localized strings in your app that are working (and just this one isn't)? Maybe your strings file is not being bundled into the app correctly. If we...

Very strange, I've asked a few people on the team and here's some ideas: - Change the bundle ID and see if that forces Finder to uncache it - `killall...

Maybe xcode is running something to clear the cache. If you can figure out what it is doing (full build log?) let me know.

This line is very interesting: ``` RegisterWithLaunchServices /Users/berkbabadogan/Library/Developer/Xcode/DerivedData/Test_CFBundleName-bgqcgebpvvozhedwwzdtbhqjykhm/Build/Products/Debug/Test_CFBundleName.app (in target 'Test_CFBundleName' from project 'Test_CFBundleName') cd /Users/berkbabadogan/Desktop/Test_CFBundleName builtin-lsRegisterURL /Users/berkbabadogan/Library/Developer/Xcode/DerivedData/Test_CFBundleName-bgqcgebpvvozhedwwzdtbhqjykhm/Build/Products/Debug/Test_CFBundleName.app ``` My guess is that https://developer.apple.com/documentation/coreservices/1446350-lsregisterurl?language=objc is causing the dock to refresh...

After your build, before you run try running: ```/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister PATH_TO_YOUR_APP_BUNDLE``` And see if that changes how the dock shows your app. If it does, we can add that as a...