目前,我已經成功設法運行Qt Creator在iOS應用程序部分通過模擬器和實際iPhone(即我的iPhone 5s)運行的計算器示例。 Qt堅持必須提供配置文件。我提供了一個特設的供應配置文件有以下設置如何更改配置文件
當我運行該項目,它讓我看到這個消息
No profiles for 'com.test.profile.calculator' were
found:-1: error: Xcode couldn't find a provisioning profile matching
'com.test.profile.calculator'.
它堅持使用此配置文件com.test.profile.calculator
而在設置我提供了我自己的。我去了Xcode項目生成的文件夾,我確實運行了它。它的工作原理和應用程序已成功部署到我的iPhone 5s。 我的問題是如何更改供應配置文件名稱?有關此問題,.pro
中沒有任何內容。
QT += widgets
HEADERS = button.h \
calculator.h
SOURCES = button.cpp \
calculator.cpp \
main.cpp
# install
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/widgets/calculator
INSTALLS += target
請參考以下鏈接https://stackoverflow.com/questions/39488782/xcode-8-provisioning-profile-vs-provisioning-profile-deprecated –
@JagathishS,我需要的Qt通過我的provisioning profile到Xcode 8. – CroCo