如何更改配置文件

时间:2017-06-16 11:02:32

标签: ios qt qt-creator provisioning-profile qt5.9

此时,我已成功通过模拟器和实际的iPhone(即我的iPhone 5s)运行了iOS应用程序部分Qt Creator附带的计算器示例。 Qt坚持必须提供配置文件。我提供了一个ad-hoc配置文件,其中包含以下设置

enter image description here

当我运行项目时,它会向我显示此消息

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

1 个答案:

答案 0 :(得分:0)

您可以查看Automatically manage signing,它会自行修复。你试试吗?

enter image description here