Alexander Vasenin

Results 11 comments of Alexander Vasenin

I'm also affected, though in a bit different way. I have `Credential` struct in my app and Swift cannot disambiguate between my `MyApp.Credential` and `Swifter.Credential` because `Swifter` is both class...

Totally agree! 20+ files in example - that's insane!

Xcode 13.3 **beta 3** is also affected

Here is a workaround via `post_install` hook in `Podfile`: ``` post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| if config.build_settings['WRAPPER_EXTENSION'] == 'bundle' config.build_settings['DEVELOPMENT_TEAM'] = 'YOUR_TEAM_ID' end end end end...

That's interesting: Xcode 13.3 RC (aka 13E113) is **not** affected.

I think it's more about which model of celestial object we would like to use: mean, apparent or vsop. I think we can refactor highPrecision to enum with .mean/.apparent/.vsop cases...

Could it be related to #517? It seems like your workaround helps with it too.

Looks like #11946 duplicate P.S. Code signing mentioned in recent comments is definitely a separate issue (it has nothing to do with `PhaseScriptExecution`)

> EDIT: Finally managed to get this fixed by adding an Apple Distribution Certificate, which we never had to add before.... You **must** have to have a distribution certificate in...