I'm working on a flutter project and I want to buid an IPA from my windows because I don't have a Mac. So I used codemagic and it works perfectly but my problem is that I did it manually from the website, is there a way to make it automatic like adding a file codemagic.yaml
in my project route, how can I do it. It's my first time using codemagic any help is highly appreciated.
Asked
Active
Viewed 754 times
1

dina robert
- 241
- 3
- 10
-
Dina, I've been trying to build an ipa file using CodeMagic but all I'm getting is a Runner.app folder which I don't know how to use. Can you please tell me how you build an ipa file using CodeMagic? – littleironical Sep 25 '22 at 17:41
-
All you need to do is to convert the runner.app to an ipa file, and that's so easy just you need to follow some steps. This question will help you to do it : https://stackoverflow.com/questions/51254470/how-to-create-ipa-file-for-testing-using-runner-app. Hope it works – dina robert Sep 26 '22 at 08:31
-
I've tried this but my app size is too big and Diawi is not taking it, is there any alternative for this Dina? – littleironical Sep 26 '22 at 11:00
-
Sorry for the late answer, I had the same problem all the alternatives have a limited size. So I was obligated to use Xcode from a mac to test my application created by Codemagic. – dina robert Sep 28 '22 at 11:45
-
Can you help me do that on mac? – littleironical Sep 29 '22 at 09:29
-
@littleironical Sorry for the late answer again, I was searching the video that helped me to do it on mac, so this is the video just follow the steps using the codemagic ipa and it will works perfectly : https://www.youtube.com/watch?v=JIDMgRCEvwU&list=LL&index=7&t=238s – dina robert Sep 30 '22 at 12:04
1 Answers
1
If your project is hosted on Github, you can use it as an action in Github Actions. This way, every time (for example) your project is merged to the main
branch, it can automatically create the IPA file, and further automate the deployment process.

fravolt
- 2,565
- 1
- 4
- 19
-
I know my question is I don't want to create the IPA from the website codemagic I want to make it automatic without using the website. – dina robert Jun 02 '22 at 09:06
-
Which is why I suggest using the Github Action, which will do its thing without you even opening a web browser and allows you to automatically build and deliver the app to the stores – fravolt Jun 02 '22 at 09:17
-