HISE Logo Forum
    • Categories
    • Register
    • Login

    Codesigning and Noterizing --- enter at your own risk....

    Scheduled Pinned Locked Moved General Questions
    44 Posts 10 Posters 4.4k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Dan KorneffD
      Dan Korneff @Lindon
      last edited by

      @Lindon Glad you finally figure it out!

      Dan Korneff - Producer / Mixer / Audio Nerd

      1 Reply Last reply Reply Quote 0
      • ustkU
        ustk @Lindon
        last edited by

        @Lindon Have you tried to put the icon in the image folder so it is embedded right at compile time, and not manually as you described?

        Can't help pressing F5 in the forum...

        LindonL 2 Replies Last reply Reply Quote 0
        • LindonL
          Lindon @ustk
          last edited by

          @ustk said in Codesigning and Noterizing --- enter at your own risk....:

          @Lindon Have you tried to put the icon in the image folder so it is embedded right at compile time, and not manually as you described?

          OK so if I put it in the images folder in my project how does HISE know which image is the one to use for the app?

          HISE Development for hire.
          www.channelrobot.com

          ustkU 1 Reply Last reply Reply Quote 0
          • ustkU
            ustk @Lindon
            last edited by

            @Lindon You just name it icon.png and Hise does the rest ;)

            Can't help pressing F5 in the forum...

            LindonL 1 Reply Last reply Reply Quote 0
            • LindonL
              Lindon @ustk
              last edited by

              @ustk said in Codesigning and Noterizing --- enter at your own risk....:

              @Lindon You just name it icon.png and Hise does the rest ;)

              Cool - didnt know that.

              HISE Development for hire.
              www.channelrobot.com

              1 Reply Last reply Reply Quote 0
              • Christoph HartC
                Christoph Hart
                last edited by

                There was an issue with iOS that rejected image files with existing EXIF data and you have to strip these before exporting but not sure if this is also the case here...

                LindonL 1 Reply Last reply Reply Quote 0
                • LindonL
                  Lindon @Christoph Hart
                  last edited by

                  @Christoph-Hart said in Codesigning and Noterizing --- enter at your own risk....:

                  There was an issue with iOS that rejected image files with existing EXIF data and you have to strip these before exporting but not sure if this is also the case here...

                  nope - not aiming at iOS (yet)

                  HISE Development for hire.
                  www.channelrobot.com

                  Dan KorneffD 1 Reply Last reply Reply Quote 0
                  • Dan KorneffD
                    Dan Korneff @Lindon
                    last edited by

                    @Lindon said in Codesigning and Noterizing --- enter at your own risk....:

                    not aiming at iOS (yet)

                    That's my next goal

                    Dan Korneff - Producer / Mixer / Audio Nerd

                    1 Reply Last reply Reply Quote 0
                    • A
                      arminh
                      last edited by arminh

                      This post is deleted!
                      1 Reply Last reply Reply Quote 0
                      • A
                        arminh
                        last edited by

                        Maybe you guys can reply to my question. I want notorize vst plugin which i put inside pkg which will be part of DMG file. And now i have question. I must codesign and notorize every single file or i can pack everything to dmg and then just notorize and codesign this image file?

                        Dan KorneffD LindonL 2 Replies Last reply Reply Quote 0
                        • Dan KorneffD
                          Dan Korneff @arminh
                          last edited by

                          @arminh I'm signing my plugins, and signing/notarizing the installer.

                          Dan Korneff - Producer / Mixer / Audio Nerd

                          1 Reply Last reply Reply Quote 0
                          • LindonL
                            Lindon @arminh
                            last edited by

                            @arminh a lot like @dustbro says -

                            as a general guideline.

                            1. You need to codesign everything (and theres more than one way to do that..hang on)
                            2. You need to noterize everything that will run alone - so your installer/package and any stand-alone MacOS apps you have written(not the plug-ins!)

                            so codesigning...

                            you have to do all of everything - but - if you are using whitebox packages then you can point it at your developer certificate and it (sorta) codesigns itself..

                            So I am using whitebox packager and I have stand alone apps in my download.. so:

                            1. build all the plugins (VST and AU) and the stand-alone app for MacOS.
                            2. codesign all of them
                            3. Noterize the stand alone app
                            4. Set up whitebox packages to use my developer certificate
                            5. build the package (that includes the stand-alone app and the plugins)
                            6. noterize the package
                            7. staple the package
                              8.. upload to server...

                            HISE Development for hire.
                            www.channelrobot.com

                            1 Reply Last reply Reply Quote 1
                            • A
                              arminh
                              last edited by arminh

                              @Lindon thanks a lot! BTW i found great app for codesign - Hancock
                              Download here https://github.com/JeremyAgost/Hancock/releases

                              NatanN 1 Reply Last reply Reply Quote 1
                              • LindonL
                                Lindon @ustk
                                last edited by

                                @ustk said in Codesigning and Noterizing --- enter at your own risk....:

                                @Lindon Have you tried to put the icon in the image folder so it is embedded right at compile time, and not manually as you described?

                                OK so I tried this today --- and STILL filled with fail - so this isnt a solution at all sadly.

                                HISE Development for hire.
                                www.channelrobot.com

                                1 Reply Last reply Reply Quote 0
                                • NatanN
                                  Natan @arminh
                                  last edited by

                                  @arminh How It Works?

                                  1 Reply Last reply Reply Quote 0
                                  • marcLabM
                                    marcLab @Lindon
                                    last edited by

                                    @Lindon Hey my process for codesigning is :

                                    codesign -s "Developer ID Application: ****** (*******)" -v ABSOLUTE_FILE_PATH;

                                    then I compress the file and codesign the compressed file.

                                    codesign -s "Developer ID Application: ****** (*******)" -v ABSOLUTE_FILE_PATH.zip;

                                    It will then be ready for notarizing.

                                    NatanN LindonL 2 Replies Last reply Reply Quote 0
                                    • NatanN
                                      Natan @marcLab
                                      last edited by

                                      @marcLab
                                      Thanks Mate

                                      Could You Do A Video Tutorial So We Can Get The Whole Process More Clearly?
                                      👏
                                      Or Posting Some Gif's And Step By Steps
                                      Thank You

                                      marcLabM 1 Reply Last reply Reply Quote 0
                                      • marcLabM
                                        marcLab @Natan
                                        last edited by

                                        @Natanr Absolutely! I'll find some spare time to do this as soon as possible

                                        NatanN 1 Reply Last reply Reply Quote 2
                                        • NatanN
                                          Natan @marcLab
                                          last edited by

                                          @marcLab Thanks Mark
                                          This Will Help Lot To Get Through The Process Confidentially 👏

                                          1 Reply Last reply Reply Quote 0
                                          • LindonL
                                            Lindon @marcLab
                                            last edited by

                                            @marcLab then your process is not much different from mine, but have you found a way to change the app icon(read the post from 12th May..)?

                                            HISE Development for hire.
                                            www.channelrobot.com

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            15

                                            Online

                                            1.7k

                                            Users

                                            11.9k

                                            Topics

                                            103.2k

                                            Posts