paint-brush
How to Build an iOS Application: A Guide for QA Engineersby@makeeva

How to Build an iOS Application: A Guide for QA Engineers

by Nataliia MakeevaOctober 23rd, 2024
Read on Terminal Reader
tldt arrow

Too Long; Didn't Read

You can download the project simply as an archive (using buttons 1 and 2 from the screenshot), but I recommend cloning it via the terminal using Git
featured image - How to Build an iOS Application: A Guide for QA Engineers
Nataliia Makeeva HackerNoon profile picture

Sometimes, we need to build an iOS application ourselves in our work: to test it on different simulators, or we simply don’t have an iPhone at hand, or we need a version from a certain branch, and a developer can’t build the app now. In such cases, we have to learn to be independent and this guide can help.


In fact, it’s not as difficult as it seems. We’ll do it in 10 minutes using the Wikipedia application. It’s available at https://github.com/wikimedia/wikipedia-ios.


You can download the project simply as an archive (using buttons 1 and 2 from the screenshot), but I recommend cloning it via the terminal using Git: this way, you can get updates in the future simply by entering “git pull.” So, I advise you to open the terminal, and go to the desired folder by entering, for example:

cd Downloads


Use the link under number 3, and enter the command:

git clone https://github.com/wikimedia/wikipedia-ios.git


Then, check that everything has been downloaded. Find this folder in the finder. You can see in your files “Wikipedia.xcodeproj”. But we need to have “Wikipedia.xcworkspace”. And also go to it in the terminal:

cd wikipedia-ios


To generate the .xcworkspace file, we will install the necessary pods. Steps to add CocoaPods to manage dependencies in your project:

  1. sudo gem install cocoapods

    This installs CocoaPods as a piece of software on your machine. (wait a little, ~10 minutes).


  2. Go to the root of your project directory (but we are here already), and execute.

    pod init
    

    This will add a base Podfile to your project.


  3. Run

    pod install
    

    which will fetch all the external dependencies mentioned by you, and associate it with a .xcworkspace file of your project.


    This .xcworkspace file will be generated for you if you already do not have one. From here on, you should use the .xcworkspace file instead of .xcproject / .xcodeproj.


  4. Open Wikipedia.xcworkspace in Xcode, and wait for all dependencies to load.


  5. Choose any device (I picked iPhone 16), and click the Run button.


Wait a little (about 5 min).

That’s all! Now, we have our application running on an iOS simulator. You can use it. Also, you can find the .app file and use it for autotests or send it to your colleagues.