Questions tagged [fastlane-gym]

62 questions
1
vote
0 answers

React native: Fastlane build Ios fail after upgrading version project

My fastlane in react native ran perfectly when it was on version 0.66.1, but after I upgrade to 0.70.6, when build iOS app through fastlane it give me this error . Have anyone face this issue? Please help me.
Trần Ân
  • 21
  • 2
1
vote
0 answers

CodeSign error On my CI machine "ARCHIVE FAILED ..... Exit code 65"

I am trying to run my build job on my Dedicated CI Machine (iMac) using GitLab CI and Fastlane. It throws an error while building the app : ** ARCHIVE FAILED ** The following build commands failed: CodeSign…
1
vote
2 answers

Fastlane Gym: Possible to only archive without export?

I'm using the following fastfile: platform :ios do desc "Build a new xcarchive for the app store" lane :release do build_app(workspace: "App.xcworkspace", scheme: "App-iOS", skip_codesigning: true) end I'd like to…
Dev Sanghani
  • 1,145
  • 11
  • 19
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

add generateAppStoreInformation in exportOptions.plist file in Fastfile

I am trying to add generateAppStoreInformation as true in exportOptions.plist. but it is showing this error : What is best way and command to add generateAppStoreInformation in fastlane file. What is the exact syntax to add…
ios developer
  • 3,363
  • 3
  • 51
  • 111
1
vote
0 answers

fastlane gym `Could not find rake-13.0.3 in any of the sources`

When I run the gym command I get this weird error. [16:20:23]: ▸ Could not find rake-13.0.3 in any of the sources [16:20:23]: ▸ Run `bundle install` to install missing gems. Here is the full log: [16:20:09]: Setting Provisioning Profile type to…
Razvan Cristian Lung
  • 5,661
  • 5
  • 25
  • 49
1
vote
1 answer

What is the value of codesigning_identity in build_app of fastlane

I was trying to use this fastlane script. The script is being failed at the end as its picking up the wrong codesigning_identity . Its being used in build_app function line number 148. I know I can assign the right value with the export command. But…
sadat
  • 4,004
  • 2
  • 29
  • 49
1
vote
2 answers

Missing com.apple.application-identifier error for the generated distribution provisioning profile via Fastlane

I can not upload a new build to AppStore because I get this error when I tap info icon next to the distribution provisioning profile: Entitlements: 6 included, 1 Missing Missing com.apple.application-identifier Although I already set an app…
jawad
  • 775
  • 6
  • 16
1
vote
2 answers

Fastlane Match - different branches of Project need to use different Apple Dev Accounts

I am just new to fastlane and have been tasked with deploying an application that is far from the norm. We have a Master branch and off of that branch we have several release/ branches. Each of these release/ branches is a different setup for…
1
vote
0 answers

Fastlane Gym Xcode Build Linker 'don't know how to convert branch' crash

When building our C++ Game project for iOS with the latest Fastlane version and Xcode 8.3.3 and Xcode 9.0.1, we're facing linker errors / crashes. Fastlane Gym Call: fastlane gym --scheme "TowerDuel-mobile-Release-Distribution-Live-Beta"…
keyboard
  • 2,137
  • 1
  • 20
  • 32
1
vote
2 answers

Fastlane Gym change provisioning profile only for one target

I am trying to setup Jenkins with fastlane. I got two targets in my project - main app and watch kit extension. When I try to change profile for Ad Hoc signing with xcargs, gym change profile for all targets and my builds fail. This is my gym…
Eugene Trapeznikov
  • 3,220
  • 6
  • 47
  • 74
0
votes
0 answers

How to set something like "dart-define" also in fastlanen

I have implemented CI/CD for my flutter app in a way that i have a fastlane for ios and android and i am calling my fastlane from the github actions and my flutter app depends on some Env variables during build time, so in development i just use…
Faisal M
  • 27
  • 1
  • 7
0
votes
0 answers

Fastlane building UI test target

I have problems building the UI test target with Fastlane. It builds directly the normal target of the app. Anyone faced that?
0
votes
0 answers

Fastlane get all scheme and configurations of iOS Project

Im trying to build a lane that generates build for my iOS project. I needed to build an app version for every scheme and configuration that I have added. Now I can iterate through the configurations using the following: project.targets.each do…
MetaSnarf
  • 5,857
  • 3
  • 25
  • 41