I am writing a program to handle SMSs in 5233 , the program runs greatly on the simulator , but when I tried to deploy it on the phone , the phone tell a sentence like "The necessary procedures are not granted access permissions"
This is the .pro file I write :
How should I write the .pro file to let the program run could run on the phone ?Code:QT += core gui TARGET = List TEMPLATE = app SOURCES += main.cpp\ list.cpp HEADERS += list.h FORMS += list.ui CONFIG += mobility MOBILITY = messaging symbian { TARGET.CAPABILITY = ReadUserData \ WriteUserData \ ReadDeviceData \ WriteDeviceData }



