Questions tagged [fastlane-match]

85 questions
1
vote
0 answers

How to generate provisioning profiles suitable for offline debug via fastlane

Regularly testing and debugging on unstable network connection is critical for the project I work on. But some time ago I've run into a problem when needed to debug my app behaviour on unstable network. Since then I haven't find any solid…
fedulvtubudul
  • 341
  • 3
  • 6
1
vote
0 answers

Fastlane failed to detect to iOS App Development provisioning profiles

I am working with Fastlane script to set up automate ios build with CI/CD. During the build time, Fastlane was unable to detect the Development provisioning file. I am getting errors as follows error: No profiles for 'my-app-identifier' were found:…
Amjed saleel
  • 348
  • 1
  • 3
  • 15
1
vote
0 answers

How to implement Fastlane Match into an existing enterprise project

Self explanatory, but a few points: Our enterprise app solution is already using Fastlane using sigh and cert commands with the certs stored locally on a Jenkins node. We want to migrate to using Match, however I am having a hard time finding good…
Scotch
  • 113
  • 1
  • 1
  • 13
1
vote
1 answer

Is it possible to use Fastlane on an iOS app with extensions?

I am working on adding a Notification Service Extension to the app I'm working on, and I am having trouble reconfiguring my Fastlane setup to work with the extension. The problem I don't know how to properly configure my certificates to allow for…
1
vote
1 answer

How do I get my fastlane build (gym) with multiple targets to find my provisioning profiles

My Fastfile: lane :build do |options| match( app_identifier: [ ENV['IOS_APP_ID'], ENV['SIRI_BUNDLE_ID'], ENV['PUSH_INTERCEPTOR_BUNDLE_ID'], ENV['WIDGETS_BUNDLE_ID'] ], shallow_clone:…
MDalt
  • 1,681
  • 2
  • 24
  • 46
1
vote
1 answer

how to export a fastlane env to the main shell environment?

I have a CI setup on bitrise that's sort of like this: # first script fastlane match appstore # second script bash mycommands.sh Now mycommands.sh needs access to one of the outputs of the first script, specifically the UDID of the provisioning…
1
vote
0 answers

iOS add targets to existing application with fastlane

I would like to extend an existing application with a production and a test target with more of prod / test target combinations. The applications are based on the same source code and are configured with different .plist files and config files, so…
Vario
  • 490
  • 4
  • 13
1
vote
0 answers

Can I install provisioning profile, p12 and cert without using a github repository or S3 using fastlane match?

I am building out a CI/CD pipeline for iOS deployment and would like to generate builds all through command line prompts and this requires me to install provisioning profiles on the mac. I would like to use fastlane match but not store it in a…
1
vote
0 answers

Fastlane Setting up iOS notification extensions

I have created a notification extension. My main app id is com.company.app My notification extension id is com.company.app.notificationService I have created a new app id on iOS dev portal with identifier com.company.app.notificationService and…
aryaxt
  • 76,198
  • 92
  • 293
  • 442
1
vote
2 answers

AdHoc and Appstore builds with Fastlane match

I want to be able to do both adhoc builds for Firebase Distribution and appstore builds for TestFlight/AppStore. I'm also using CI/CD system (CircleCI). I use Fastlane match for builds signing. My question is how to do switch between different type…
Lucky_girl
  • 4,543
  • 6
  • 42
  • 82
1
vote
0 answers

Fastlane Automating 2FA with account Enterprise

we have a CI Jenkins pipeline where Fastlane can connect to Apple Store using API_KEY generated from Apple Holder account avoiding 2FA authentication. Now, we have a problem when we try to update provisiong profile (Fastlane - plugin MATCH) with the…
Francesco
  • 11
  • 2
1
vote
1 answer

Fastlane finished with errors - Match - no error message

I updated fastlane to the newest version ( 2.162.0) Now when I try to run fastlane buildApp, it errors out and hangs forever with the only output: fastlane finished with errors Terminal Output: % fastlane buildApp [✔] [14:59:43]: Get started…
DanielRead
  • 2,288
  • 1
  • 23
  • 34
1
vote
0 answers

How to change user account settings for match step in fastlane?

How could I easily change the match configuration so it continues working with a new user? We had a person who was account owner whose account was used to perform the build via FastLane. Since Apple introduced the new 2-factor authentication which…
1
vote
1 answer

Fastlane Match - get all provisioning profiles with a single run

When I run fastlane match inside the app's project directory it gets executed with development: true parameter by default, thus fetching only a development certificate and provisioning profile. I have to run the command multiple times to refresh all…
1
vote
1 answer

Can fastlane match command potentially revoke certificates

Can fastlane match [environment] (not using --readonly flag) potentially revoke certificates, or are only provisioning profiles affected? I have looked at the official docs, but it's not really clear to me if certificates are affected by this…
oyvindhauge
  • 3,496
  • 2
  • 29
  • 45