GithubHelp home page GithubHelp logo

Comments (13)

befirst avatar befirst commented on May 24, 2024 47

https://stackoverflow.com/questions/39945377/no-code-signature-found-after-pod-installed-in-xcode-8/39949186#39949186

the best solution if you have some CI/CD:

post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
        config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
        config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
       end
    end
  end

from tocropviewcontroller.

befirst avatar befirst commented on May 24, 2024 4

I just chose a team inside the Signing&Capabilities -> Targets -> TOCropViewController-TOCropViewControllerBundle and it works perfectly

from tocropviewcontroller.

orzzp avatar orzzp commented on May 24, 2024 2

I have solved this issue temporarily with the following, but I am not sure if it will cause new issue yet.

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
    target.build_configurations.each do |config|
        config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
        config.build_settings['CODE_SIGN_IDENTITY'] = ''
    end
  end
end

from tocropviewcontroller.

simonemarra avatar simonemarra commented on May 24, 2024 2

I just chose a team inside the Signing&Capabilities -> Targets -> TOCropViewController-TOCropViewControllerBundle and it works perfectly

...Oh dear! If a debug message says EXACTLY what is missing, then give to the IDE what it needs. Clean and simple!

I was blocked by my mind: "WTF, why you need my team signature if the package is signed by another developer?"

And the answer sometimes is "just try it and don't mind, you freaky-nerdy-guy!! What do you have to loose?!"

Really thank you dude!

from tocropviewcontroller.

iworkcloud avatar iworkcloud commented on May 24, 2024

+1

from tocropviewcontroller.

sabiland avatar sabiland commented on May 24, 2024

Hm I didn't have any issues building with Xcode 14.

from tocropviewcontroller.

orzzp avatar orzzp commented on May 24, 2024

+1

from tocropviewcontroller.

simonemarra avatar simonemarra commented on May 24, 2024

I'm having the same issue when using the flutter package https://github.com/hnvn/flutter_image_cropper that uses TOCropViewController as iOS component.

Is there any suggestion?

from tocropviewcontroller.

yuanzhiying avatar yuanzhiying commented on May 24, 2024

+1

from tocropviewcontroller.

gslender avatar gslender commented on May 24, 2024

After 3.3.2 upgrade I had issues building locally but the above PODS workaround fixed it for me. Not really sure why !?

from tocropviewcontroller.

acabreragnz avatar acabreragnz commented on May 24, 2024

+1

from tocropviewcontroller.

jordanliu avatar jordanliu commented on May 24, 2024

+1

from tocropviewcontroller.

JPGuptaJee avatar JPGuptaJee commented on May 24, 2024

https://stackoverflow.com/questions/39945377/no-code-signature-found-after-pod-installed-in-xcode-8/39949186#39949186

the best solution if you have some CI/CD:

post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
        config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
        config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
       end
    end
  end

I was facing same issue and this solution worked for me perfectly Thank @befirst

from tocropviewcontroller.

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.