Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is fastlane still needed with VS Appcenter?

Like the title says. I am planning to use Visual Studio AppCenter. Where does fastlane fit in there? As I am seeing it, fastlane becomes redunant when switching over to VSAC? Or am I missing the bigger picture here?

like image 920
mXX Avatar asked May 24 '19 09:05

mXX


People also ask

What is Appcenter MS used for?

The App Center Build service helps you build the mobile apps you and your team are working on, using a secure infrastructure. To start building your Android app, you will need to connect to your repository from GitHub.

What is Android Fastlane?

fastlane is an open source platform aimed at simplifying Android and iOS deployment. fastlane lets you automate every aspect of your development and release workflow.

How do you upload apps to App Center?

Distributing the package. To distribute a package with App Center, go to App Center, go to your app, then go to Distribute > Groups and select New release. Follow the steps in the wizard. In the first step, choose the Release area to browse for the file you want to upload, or drag and drop the file onto the area.


1 Answers

Visual Studio App Center certainly does a lot of the things fastlane does, but it depends fully on your individual use case if you can fully replace fastlane with App Center.

A major conceptual difference is that App Center is a hosted software as a service that you can use to do common things (build, test, publish) with your app. Fastlane on the other hand is a local tool (that can also be used in a server environment) that does whatever you want with your app. If there is no built-in action or plugin for your specific and custom use case, you can just write one yourself and add the functionality.

Fastlane is actually one of the installed tools on the App Center build servers, so you don't even have to decide if you want to use one or the other - you can still use fastlane with App Center.

(App Center also uses fastlane behind the scenes itself for features like App Store and TestFlight Distribution for example)

like image 181
janpio Avatar answered Oct 09 '22 16:10

janpio