Hi ,
I have written an application which works for Symbian^3 , Symbian^1 & 3rd Edition devices.
This was made possible by keeping some checks which builds our code according to the family .
like :
#define symbian3
#define symbian1
#define symbian3rdEdition
one of the above flags are set at one time .
#if symbian3
//code for symbian3 family
#else if symbian1
//code for symbian1 family
#else if symbian3rdEdition
//code for symbian3rdEdition family
#end
so this gives us three executables for the three families when separately built .
My question is , will be able to upload all the three executables in the OVI store with the same name because all does the same functionality as I want to support the application for all the three above mentioned family of phones ?
Please reply .
Thanks .




