Fastlane: Deploy on Local iOS Device

I use fastlane to manage profile profiles, push builds for TestFlight, etc., but now I was wondering if it is possible to deploy to my local (USB) iOS device using any fastline command or pipeline?

In particular, deploying a React Native app on a local device via fastlane would be awesome?

+7
ios xcode react-native fastlane
source share
1 answer

While there is no such option, at least I know.

You can see all the available fastlane commands, "actions", using the fastlane terminology by typing fastlane actions .

One of the tools you can use to deploy an application to a connected device from a terminal is to use ios-deploy .

You can create the application using fastlane gym , then run ios-deploy .

The tool is distributed via npm . If you are interested in keeping your Ruby toolchain only, there is a gem wrapping it in ios-deploy-gem that might not be relevant though.

+7
source share

All Articles