Coder Social home page Coder Social logo

Comments (3)

CristianMG avatar CristianMG commented on April 23, 2024

Same problem here, I have not selected provisioning, gym fails, but I'm indicating the provisioning profile in my code

image

`

  provisioning_type =
   if build_type == "adhoc" 
    then
      "AdHoc"
    else 
      "AppStore"
  end

  provisioning = "match #{provisioning_type} #{bundle}"

  build_app(
    scheme: target,
    export_method: build_type_to_export_method,
    export_xcargs: "-allowProvisioningUpdates PROVISIONING_PROFILE_SPECIFIER=#{provisioning}" ,
    include_bitcode: include_bitcode,
    output_directory: "./build",
    output_name: id + ".ipa",
    configuration: build_type,
    clean:true,
    export_options: {
      uploadBitcode: upload_bitcode,
      uploadSymbols: upload_symbols,
      compileBitcode: compile_bitcode,
      provisioningProfiles: {
        "#{bundle}" => provisioning
      }
    }
  )

`

from fastlane.

Nolascoin avatar Nolascoin commented on April 23, 2024

same issue using match and github actions

   build_app(
      scheme: "....",
      export_method: "ad-hoc",
      export_options: {
        provisioningProfiles: {
          "com.****" => "match AdHoc com.****"",
          "com.****.imagenotification" => "match AdHoc com.****".imagenotification"
        }
      } 

Logs refer to Development rather than ad-hoc

❌  error: No profile for team '****' matching 'match Development com.'****' found: Xcode couldn't find any provisioning profiles matching ''****/match Development com.'****'. Install the profile (by dragging and dropping it onto Xcode's dock item) or select a different one in the Signing & Capabilities tab of the target editor. (in target ''****' from project ''****')
❌  error: No profile for team '****' matching 'match Development com.*****.imagenotification' found: Xcode couldn't find any provisioning profiles matching '****/match Development com.*****.imagenotification'. Install the profile (by dragging and dropping it onto Xcode's dock item) or select a different one in the Signing & Capabilities tab of the target editor. (in target 'ImageNotification' from project '*****')

My solution was
go to PROJECT / yourApp / Info
Then under Info / Configurations
Then + / Duplicated Release

I created an AdHoc' then assigned the provisioning profile under TARGETS / App /Signing & Capabilities / AdHoc / Provisioning Profile`

Now my match looks like

   build_app(
      scheme: "....",
      export_method: "ad-hoc",
    )

tldr; assigned every 'match' profile to the proper configuration, I was assuming match was going to search/replace PROVISIONING_PROFILE_SPECIFIER which is not the case.

from fastlane.

Hyla96 avatar Hyla96 commented on April 23, 2024

I can reproduce it as well. It came with a bigger PR so it's hard to pin-point the cause, but the most relevant changes in my project were:

  • Upgraded xCode from 14 to 15
  • Bumped iOS target from 12 to 13

It can be temporarily be fixed by manually selecting the AppStore version from xCode and push it to your CI/CD Infrastructure, but it's not ideal since you'll need the match development certificate locally to run the app on a real device

from fastlane.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.