Hi @jrose, I’m noob on this so don’t kill me please
Let’s suppose that I have an app which is coded using swift 4.2 and it has many dependencies built with ABI 4.2.X
In order to jump to the new ABI 5.X.X, we have requested our third party’s to recompile their frameworks with the new ABI. My first question is, do these framework should be written using Swift 5? I understand that no because Swift version and ABI level are independent
Once we have every third party library ready we update them on the app and start using the new ABI level of Xcode. My second question goes here, do we need to update also the Swift version or not? What I expect is to be able to update the ABI level and after check that we haven’t broken anything on the app, migrate the app to Swift 5.X
Thanks in advance and again sorry if I killed someone with my mistakes :slight_smile :)