Kacper

Results 10 comments of Kacper

Oveerriding settings as in https://github.com/fastlane/fastlane/issues/12849#issuecomment-404978983 also does not work: > error: ExtensionKit does not support provisioning profiles. ExtensionKit does not support provisioning profiles, but provisioning profile match Development com.myCompany.myApp has...

UPDATE: I have manually switched in XCode the provisioning profile I got from `match` (on my local machine) and build was somehow successful, but this time the error message is:...

More context: Using fastlane's `setup_ci` instead of using my own custom keychain (here `ensure_temp_keychain`) also results in an error: > Warning: unable to build chain to self-signed root for signer...

I also checked if this is related to the [WWDRR Certificate expiration](https://developer.apple.com/support/expiration/). I have added ``` import_certificate( certificate_path: "./Signing/awwdrca_23.cer", keychain_name: "fastlane_tmp_keychain", log_output: true ) ``` But the command says: >...

Somehow, when we set up the Gitlab CI runner on another clean machine, everything worked as intended. We don't know yet why this kept happening on the other machine, but...

Sorry for the late reply, I have fixed this a long time ago but from what I remember the solution was that I needed to pass both the provisioning profile...

I have the same issue. Screenshots generated on an iPhone but with regular width size class do not use the proper storyboard constraints and do not reflect the actual UI...

I'd like also to have this, I'm using a "popover-like" ui on an iPad and I cannot display it in the native popover, but to behave the same as on...

I found a solution: ```yml sources: - path: myTarget excludes: - "**/*.plist" - path: myTarget includes: - "**/*.plist" buildPhase: none ``` This adds the files to the project, but not...