Yes, i've changed it correctly in all files except the .pkg file i don't use for now ( i'm trying to make it working in the emulator ) :
The MMP file :
Code:
TARGET Mooby.exe
TARGETTYPE exe
UID 0x100039CE 0x20004F30
SECUREID 0x20004F30
EPOCSTACKSIZE 0x5000
SOURCEPATH ..\src
SOURCE HelloWorldBasic.cpp
SOURCE HelloWorldBasicApplication.cpp
SOURCE HelloWorldBasicAppView.cpp
SOURCE HelloWorldBasicAppUi.cpp
SOURCE HelloWorldBasicDocument.cpp
SOURCEPATH ..\data
START RESOURCE Mooby3.rss
HEADER
TARGETPATH resource\apps
END //RESOURCE
START RESOURCE Mooby3_reg.rss
#ifdef WINSCW
TARGETPATH \private\10003a3f\apps
#else
TARGETPATH \private\10003a3f\import\apps
#endif
END //RESOURCE
The RSS Mooby3_reg.ress file :
Code:
#include "Mooby3.rls"
#include <appinfo.rh>
#include <Mooby3.rsg>
UID2 KUidAppRegistrationResourceFile
UID3 0x20004F30
RESOURCE APP_REGISTRATION_INFO
{
app_file="Mooby";
localisable_resource_file = STRING_mooby_loc_resource_file_1;
localisable_resource_id = R_MOOBY_LOCALISABLE_APP_INFO;
embeddability=KAppNotEmbeddable;
newfile=KAppDoesNotSupportNewFile;
}
The helloworldapplication.cpp file :
Code:
// UID for the application;
// this should correspond to the uid defined in the mmp file
const TUid KUidHelloWorldBasicApp = { 0x20004F30 };
And it still crash :/