Build iOS App from scratch - Part 8- Setup DEV, QA and PROD environment using schemes in Xcode

Поделиться
HTML-код
  • Опубликовано: 7 ноя 2024

Комментарии • 7

  • @rajeshkumaryarlagadda6389
    @rajeshkumaryarlagadda6389 Год назад

    Nice video.. Thanks for the series. No youtube video covers things in such details

  • @usharao5967
    @usharao5967 Год назад

    Can we set base url’s based on active compilation type with out having configuration setup?

  • @ranganathchenna4559
    @ranganathchenna4559 Год назад

    Nice viceo .
    Do video on GraphQL..!

  • @vaibhavthakur1875
    @vaibhavthakur1875 Год назад

    Why have you created Debug-Dev and Release-Dev. and save for QA and Prod?
    Instead of this you could have also done like -
    change Debug to Dev.
    change Release to Prod.
    copy release and change to QA.

    • @AppDeveloperPoint
      @AppDeveloperPoint  Год назад +4

      Thanks for watching video. Debug and release schema which are there by default are not for differentiating the urls. In a debug build the complete symbolic debug information is emitted to help while debugging applications and also the code optimization is not taken into account. While in release build the symbolic debug info is not emitted and the code execution is optimized. Also, because the symbolic info is not emitted in a release build, the size of the final executable is lesser than a debug executable. That's the reason I have created debug and release for each target. Hope it answers your query

    • @vaibhavthakur1875
      @vaibhavthakur1875 Год назад

      @@AppDeveloperPoint
      Thanks for the detailed explanation.
      Today I learned something new, 🙌
      Can you please tell us what is included in the symbolic debug information and how is code optimized for the release build and not for debug build?