Qt for iOS: code signing required

I have the smite version installed on my MaC, as well as the Xcode version 6.1. I downloaded Qt from the official site and tried to create a very simple program. However, he gave me 3 error messages

: - 1: error: code signature identifiers not found: no valid signature identifiers (ie certificate and private key pair) matching command identifier "(null)" were found.

: - 1: error: code signing is required for the product type "Application" in the SDK "iOS 8.1"

: - 1: error: Xcodebuild error.

I searched the Internet for possible solutions, but could not find. What should I do to create my qt applications?

+4
source share
2

qmake :

setting.name = DEVELOPMENT_TEAM
setting.value = XXXXXXXXXXXXXX
QMAKE_MAC_XCODE_SETTINGS += setting

X . : - . ( XCode), :

  • XCode XCode ( ).
  • " "
  • project.pbxproj .
  • DEVELOPMENT_TEAM.
+5

qmake :

ios: {
    QMAKE_DEVELOPMENT_TEAM = ABCDEF0123
    QMAKE_PROVISINOING_PROFILE = 12345678-abcd-1234-abcd-12345678abcd
}

, ~/Library/MobileDevice/Provisioning Profile, , :

<dict>
    ...
    <key>TeamIdentifier</key>
    <array>
            <string>ABCDEF0123</string>
    </array>
    ...
    <key>UUID</key>
    <string>12345678-abcd-1234-abcd-12345678abcd</string>
    ...
</dict>

:

0

All Articles