Hi,
I have a similar problem with deploying my application to device (E72). Build application was ok, but deploying is with error: Could not install from package C:\Data\mon.sis on device: General OS-related error.
Here is my .pro file:
In this application I create sql database and write data to database. Also I export data from database to csv.QT += core gui\
QT += sql
TARGET = mon
TEMPLATE = app
SOURCES += main.cpp\
moneymain.cpp \
income.cpp \
expenditures.cpp \
view.cpp
HEADERS += moneymain.h \
income.h \
expenditures.h \
view.h
FORMS += moneymain.ui \
income.ui \
expenditures.ui \
view.ui
CONFIG += mobility
MOBILITY =
symbian {
TARGET.UID3 = 0xedc913ed
TARGET.CAPABILITY = ReadUserData \
WriteUserData \
ReadDeviceData \
WriteDeviceData
TARGET.EPOCSTACKSIZE = 0x14000
TARGET.EPOCHEAPSIZE = 0x020000 0x800000
}
Can anyone help me?
Thanks





