Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

get error when getting beta version with fastlane

When I release beta with fastlane in React native project build_app, I have this problem.

platform :ios do
  desc "Push a new beta build to TestFlight"
  lane :beta do
    increment_build_number(xcodeproj: "TestApp.xcodeproj")
    build_app(
      workspace: "TestApp.xcworkspace",
       scheme: "TestApp",
       include_bitcode: true)
  end
end

[14:13:21]: Error packaging up the application

------+------------------------+-------------+
|              fastlane summary               |
+------+------------------------+-------------+
| Step | Action                 | Time (in s) |
+------+------------------------+-------------+
| 1    | default_platform       | 0           |
| 2    | increment_build_number | 1           |
| 💥   | build_app              | 366         |
+------+------------------------+-------------+

[14:13:21]: fastlane finished with errors

[!] Error packaging up the application

Could someone help me with this one.

like image 319
Yunus Güneş Avatar asked Nov 21 '25 11:11

Yunus Güneş


1 Answers

In my case, I added a new distribution certificate which was in my keychain in first place. I removed the distribution certificate and it worked. It may not be the solution but can check

like image 161
Sanoj Kashyap Avatar answered Nov 23 '25 06:11

Sanoj Kashyap