Fastlane: For mobile development, Fastlane is an automation tool that can automate the building and releasing of iOS and Android apps.
– Source: dev.to
/
8 months ago
The 20 testers closed beta should be very easy to automate through Fastlane and a script, I think https://www.20testers.com/ is already using this, seeing that they say “We run automated tests on 20 separate Google accounts for 14 consecutive days. The testing involves interacting with your app in a human-like manner – pressing buttons, filling in inputs, etc.”.
Source:
10 months ago
Fastlane is an open-source platform designed to simplify Android and iOS deployment. It allows you to automate every aspect of your development and release workflow.
– Source: dev.to
/
10 months ago
-> You can use codepush.
-> If you like me, you can use fastlane https://fastlane.tools/
-> You can use Expo OTA without use expo too :).
Source:
over 1 year ago
Building your app using only GitHub Actions is possible, but it’s definitely not a straightforward process. There are tools such as Fastlane and of course XCode Cloud that simplifies this process, however my goal was a solution that was not dependent on third party libraries or services.
– Source: dev.to
/
over 1 year ago
Fastlane is my go-to tool for mobile app deployments. It can run a custom command to build your app for each platform, and you can perform Godot exports from the command line, so all the pieces are there.
Source:
over 1 year ago
Fastlane – self-hosted solution for building apps on a “box in the closet”.
Source:
over 1 year ago
In the previous post of this series, we showed how to use Fastlane to create an automated way to build, package, and upload your Android app to Play Console’s Internal test channel locally. In this post, we will show how to use that same script but running it on GitHub Actions to create a CI/CD system that gets triggered when you push to a specific branch.
– Source: dev.to
/
over 1 year ago
Fastlane is huge. Even if you don’t use it for CI/CD, having a command line tool (that doesn’t suck) to automate so many important things is a huge boon.
Source:
over 1 year ago
> if you have someone other than you to deal with code signing I hear that, though fastlane [0] makes like 1000x easier. Now my first step for any app is setting up a fastlane job to run Github Actions. My goal is to be able to push code and have an app show up in TestFlight without me ever needing to manually manage that. I can even make “blind” changes to the code and push it which is nice for old codebases or…
– Source: Hacker News
/
over 1 year ago
So I was thinking to myself, as somebody ever thought of automated these ?
As I was searching for a way to do it, I found this tool named… Fastlane .
– Source: dev.to
/
over 1 year ago
In my future projects, I want to try ms appcenter and fastlane as well. Specifically appcenter looks pretty useful.
– Source: dev.to
/
almost 2 years ago
I’ve used Fastlane in the past. They have automated screenshots and you could generate them locally or probably use a GitHub action on PR or whatever. https://fastlane.tools/.
Source:
almost 2 years ago
Our build process is automated using fastlane. That handles building and testing the app as well as signing, notarizing and uploading to Amazon S3. We distribute via a link on our website — Callisto. Updates are handled using Sparkle. We have a custom built appcast generator as part of our website that reads the S3 bucket and builds the feed that Sparkle uses.
Source:
almost 2 years ago
I’m Josh Holtz! I’ve been the lead maintainer of fastlane since 2018 and I also currently work at RevenueCat.
Source:
almost 2 years ago
Expo also provides a cloud based build and deployment service, EAS, that makes it easy to deploy an app to the store and keep it up to date. While this may be suitable for some organisations, there may be a need to build and deploy the app using an organisation’s own infrastructure or existing CI/CD platform. This post will walk through an approach to building, testing and deploying an app using fastlane and…
– Source: dev.to
/
almost 2 years ago
You can integrate a tool for that into your pipeline, like https://fastlane.tools/ which also supports app-store-entries-as-code..
Source:
about 2 years ago
TikTok’s in-app browser found to be recording your keystrokes about
Report of Felix Krause, a well-known software researcher and founder of Fastlane.
Source:
about 2 years ago
$ fastlane –help
fastlane
CLI for ‘fastlane’ – The easiest way to automate building and releasing your iOS and Android apps
Run using `fastlane [platform] [lane_name]`
To pass values to the lanes use `fastlane [platform] [lane_name] key:value key2:value2`Commands:
action Shows more information for a specific command
actions Lists all available…
– Source: dev.to
/
about 2 years ago
I use fastlane to build apps. LMAO , from the downvotes it seems, that this sub doesn’t actually have experienced devs who use build automation. MY app builds when I commit code. I run simulators (debug bills) from xcode / android studio.
Source:
over 2 years ago
What is fastlane?
We can simply describe fastlane as the easiest way to automate building and release your iOS and Android apps on the stores.
– Source: dev.to
/
over 2 years ago