LoginSignup
0
0

More than 1 year has passed since last update.

XCode 14でSigning for ... requires a development team.を解決

Posted at

FlutterでiOSをbuildするとき、はまったので、メモ

以下のコードをPodfileに追加

if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
      target.build_configurations.each do |config|
          config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
      end
    end
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0