Skip to content

Provisioning profile extra parameters not taken into account #17017

@ir-fuel

Description

@ir-fuel

New Issue Checklist

Issue Description

This is a pretty specific issue, but it is blocking for us nonetheless. We are making iOS apps using Apple's COVID-19 Exposure Notification API.

To do this we need to generate Provisioning Profiles that contain en extra entitlement (as you can see on the bottom of the screenshot).

Right now this is not taken into account so we can't use Fastlane to generate our profiles and do the CircleCI builds. I've been looking on how to manually manage the profiles but it's just one big confusing mess with outdated articles and Stackoverflow posts. I currently see no easy way of including these profiles in Fastlane.

Any chance this gets resolved?

Screenshot 2020-08-07 at 13 27 08

✅ fastlane environment ✅

Stack

Key Value
OS 10.15.5
Ruby 2.7.1
Bundler? false
Git git version 2.24.3 (Apple Git-128)
Installation Source /usr/local/bin/fastlane
Host Mac OS X 10.15.5 (19F101)
Ruby Lib Dir /usr/local/Cellar/ruby/2.7.1_2/lib
OpenSSL Version OpenSSL 1.1.1f 31 Mar 2020
Is contained false
Is homebrew false
Is installed via Fabric.app false
Xcode Path /Applications/Xcode.app/Contents/Developer/
Xcode Version 11.6

System Locale

Variable Value
LANG en_US.UTF-8
LC_ALL en_US.UTF-8
LANGUAGE

fastlane files:

`./fastlane/Fastfile`
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
#     https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
#     https://docs.fastlane.tools/plugins/available-plugins
#

# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane

# A list of supported languages

ENV["LC_ALL"] = "de_DE"
ENV["LANG"] = "de_DE"

default_platform(:ios)

platform :ios do

  before_all do
    setup_circle_ci
  end

  desc "Update license file"
  lane :update_licenses do
    update_third_party_notice()
  end

  desc "Build project"
  lane :build do
    build_ios_app(
      skip_codesigning: true,
      export_method: "ad-hoc",
      skip_package_ipa: true,
      destination: "platform=iOS Simulator,OS=13.6,name=iPhone 11",
    )
  end


  lane :screenshots do
    capture_screenshots
  end

end
`./fastlane/Appfile`
# app_identifier("[[APP_IDENTIFIER]]") # The bundle identifier of your app
# apple_id("[[APPLE_ID]]") # Your Apple email address


# For more information about the Appfile, see:
#     https://docs.fastlane.tools/advanced/#appfile

fastlane gems

Gem Version Update-Status
fastlane 2.155.1 ✅ Up-To-Date

Loaded fastlane plugins:

No plugins Loaded

Loaded gems
Gem Version
did_you_mean 1.4.0
slack-notifier 2.3.2
rouge 2.0.7
xcpretty 0.3.0
terminal-notifier 2.0.0
unicode-display_width 1.7.0
terminal-table 1.8.0
plist 3.5.0
CFPropertyList 3.0.2
public_suffix 4.0.5
addressable 2.7.0
multipart-post 2.0.0
word_wrap 1.0.0
tty-cursor 0.7.1
tty-spinner 0.9.3
babosa 1.0.3
colored 1.2
highline 1.7.10
commander-fastlane 4.4.6
excon 0.75.0
unf_ext 0.0.7.7
unf 0.1.4
domain_name 0.5.20190701
http-cookie 1.0.3
faraday-cookie_jar 0.0.6
faraday 1.0.1
faraday_middleware 1.0.0
fastimage 2.1.7
gh_inspector 1.1.3
mini_magick 4.10.1
rubyzip 2.3.0
security 0.1.3
xcpretty-travis-formatter 1.0.0
bundler 2.1.2
naturally 2.2.0
simctl 1.6.8
uber 0.1.0
declarative 0.0.20
declarative-option 0.1.0
representable 3.0.4
retriable 3.1.2
mini_mime 1.0.2
signet 0.14.0
memoist 0.16.2
os 1.1.0
googleauth 0.13.0
httpclient 2.8.3
google-api-client 0.38.0
google-cloud-errors 1.0.1
google-cloud-core 1.5.0
google-cloud-storage 1.26.2
emoji_regex 3.0.0
uri 0.10.0
nanaimo 0.2.6
colored2 3.1.2
claide 1.0.3
atomos 0.1.3
xcodeproj 1.17.0
tty-screen 0.8.1
json 2.3.1
dotenv 2.7.6
jwt 2.2.1
multi_json 1.15.0
google-cloud-env 1.3.3
rake 13.0.1
digest-crc 0.6.1
aws-eventstream 1.1.0
aws-sigv4 1.2.1
aws-partitions 1.343.0
jmespath 1.4.0
aws-sdk-core 3.104.1
aws-sdk-kms 1.36.0
aws-sdk-s3 1.75.0
forwardable 1.3.1
logger 1.4.2
cgi 0.1.0
timeout 0.1.0
stringio 0.1.0
ipaddr 1.2.2
openssl 2.1.2
ostruct 0.2.0
strscan 1.0.3
date 3.0.0
delegate 0.1.0
fileutils 1.4.1
io-console 0.5.6
zlib 1.1.0
singleton 0.1.0
rexml 3.2.3
open3 0.1.0
yaml 0.1.0
psych 3.1.0
mutex_m 0.1.0
webrick 1.6.0

generated on: 2020-08-07

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions