Systems | Development | Analytics | API | Testing

CI CD

7 Steps to Ultra-fast Mobile Continuous Integration

Speed is the name of the game in continuous integration. The quicker a developer can get feedback on their changes, the quicker they can address problems and move on to the next feature. Imagine shaving 10 minutes off your build. For a developer pushing code 5 times a day, this is 40 hours of time savings a year! In this session, Ben Boral, Solutions Engineer at Bitrise will offer 7 actionable tips that mobile developers can apply to their own CI pipelines to enjoy super fast CI responsiveness.

Flutter isolates - everything you need to know

The word “isolate” shouldn’t be new to you — since the pandemic started, it has become a buzzword. Chances are you’ve also heard the term used in relation to Flutter, but what exactly is an isolate in this context? How does Dart execute code? How do you implement a isolate? All these questions will be answered in this article. If you’re a beginner in Flutter development, this article is for you, as I’ve tried to simplify a lot of concepts.

Building and publishing a VR Unity game for Oculus with Codemagic!

TL;DR: You can automate the publishing of your Unity VR apps to the Oculus Store using Codemagic and the Oculus CLI tools. Creating VR Unity apps is really cool… but how can you easily share them with your friends during the dev phase? In a previous article, I discussed why automating building and publishing of your Unity projects can be interesting and useful, particularly when you want to get continuous feedback from your nice beta testers.

Build Insights Pro: Introducing Bitrise's own CI/CD Performance Monitoring Tool

Build Insights is a monitoring tool that helps you understand your build performance and where you can improve your team’s delivery velocity and stability. It gives you the confidence that things are working well, and visibility into the issue when they are not, all working seamlessly with your existing Bitrise pipelines.

Open-source iOS projects for learning better practices

In your iOS development learning journey, you want to understand and use the best practices while writing code. These include working with Clean Architecture, writing good tests for your native iOS app, and knowing how and what to test. This post discusses some open-source iOS Swift projects that you can take inspiration from to learn better development practices, such as: Build, test and deliver mobile apps in record time Start now

Working with REST APIs - Flutter

Data, data, and data. Everything we see in today’s world is just data. So how can we get data into our app? How can we integrate APIs into our app? Let’s find out! There are a lot of ways we show data in our app, such as: The most common method is to show data from a database or public APIs. Even loading data from a database involves using APIs, though these can be private. So, let’s see how you can integrate APIs, fetch data from a public API, and use it in your Flutter app!