Discussion Board

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    Registered User GTO_India's Avatar
    Join Date
    Nov 2010
    Posts
    866
    ISSUE#2: SUMMARY: The application does not launch, error message "System error" is displayed.
    STEPS TO REPRODUCE: .
    1. Download the content OTA.
    2. Install the content.
    3. Launch the application.
    ACTUAL RESULTS: The application does not launch at all, the following error message is displayed: "System error"
    EXPECTED RESULT: The application is installed and launched properly. The user is able to run the content without any errors.
    AFFECTED DEVICES: All devices.
    ISSUE#3: SUMMARY: A warning message: "Application not compatible with phone. Continue anyway?" is displayed at installation.
    ACTUAL RESULT: A warning message is displayed when installing the content file: "Application not compatible with phone. Continue anyway?".
    EXPECTED RESULT: The application is downloaded and installed on the device without any issues. Any error or warning messages should not be displayed during installation.
    AFFECTED DEVICES: Symbian^3 devices.

  2. #2
    Regular Contributor teemup's Avatar
    Join Date
    May 2010
    Posts
    362
    The first issue is because you have a bug in your application.

    For the second one: Are you making a Symbian C++ application?

    Because it seems to me that you are missing the compatibility statement from the PKG file:
    [0x20022E6D], 0, 0, 0, {"Symbian^3 ProductID"}

    Add that under where you defined the Vendor name.

    If you are making a Qt application then that is more strange.
    Which one are you making?

    Please remember that you should really test out your application on all the devices you plan to release it in. You can use the Remote Device Access here in developer.nokia.com.

  3. #3
    Registered User GTO_India's Avatar
    Join Date
    Nov 2010
    Posts
    866
    [0x20022E6D], 0, 0, 0, {"Symbian^3 ProductID"} is for symbain 3 right? yes it is symbian c++ application.

  4. #4
    Super Contributor mahbub_s60's Avatar
    Join Date
    Mar 2008
    Posts
    1,481
    Quote Originally Posted by GTO_India View Post
    ISSUE#2: SUMMARY: The application does not launch, error message "System error" is displayed.
    ......
    AFFECTED DEVICES: Symbian^3 devices.
    One reason could be for example you don't have exe in the pkg (you have the icon underlying exe is missing) or it could not load the exe due to various reasons (your app could not be initialized properly and leave or exited or you did not handle the Symbian leave properly in your code).

  5. #5
    Registered User GTO_India's Avatar
    Join Date
    Nov 2010
    Posts
    866
    Ok I have corrected that yesterday in th .pkg file including .mif and .rsc files in the .pkg file and in .rss of my application.

  6. #6
    Registered User GTO_India's Avatar
    Join Date
    Nov 2010
    Posts
    866
    "your app could not be initialized properly and leave or exited or you did not handle the Symbian leave properly in your code"


    Iam not getting you clearly......

  7. #7
    Super Contributor mahbub_s60's Avatar
    Join Date
    Mar 2008
    Posts
    1,481
    There could be several reasons just one example
    void CBTObjectExchangeAppUi::ConstructL()
    {
    iMyLeavingObject = CLeavingObject::NewL(*this);
    }
    // If it fails ( means leave just an example, your case coudl be different) it might give you same side effect. You can use file logger or On device debugging to check at which point your app fails when you start the app.
    Check in your appUI construct function and make sure nothing is leaving and if it leaves then handled it for example with trap




    }

  8. #8
    Registered User GTO_India's Avatar
    Join Date
    Nov 2010
    Posts
    866
    in present case it is as below:


    iAppView = CApp1AppView::NewL(ClientRect());

  9. #9
    Registered User GTO_India's Avatar
    Join Date
    Nov 2010
    Posts
    866
    iAppView = CApp1AppView::NewL(ClientRect());

    // Create a file to write the text to
    TInt err = CCoeEnv::Static()->FsSession().MkDirAll(KFileName);
    if ((KErrNone != err) && (KErrAlreadyExists != err))
    {
    return;
    }

    RFile file;
    err = file.Replace(CCoeEnv::Static()->FsSession(), KFileName, EFileWrite);
    CleanupClosePushL(file);

  10. #10
    Super Contributor mahbub_s60's Avatar
    Join Date
    Mar 2008
    Posts
    1,481
    Hi,
    You can take a look in this thread how we can take a log with file system. If your application works with emulator then you can clean (means remove the binary, rsc etc generated by your project) and run it again. You might see or re produce it.

    If it does not work on emulator then you have to use phone and take a look in this thread.
    http://www.developer.nokia.com/Commu...ogger&p=718761

  11. #11
    Registered User GTO_India's Avatar
    Join Date
    Nov 2010
    Posts
    866
    Ima not getting you . I tried to debug it says TRKProtoColPlugin Unable to download the .exe

  12. #12
    Super Contributor mahbub_s60's Avatar
    Join Date
    Mar 2008
    Posts
    1,481
    Hi,

    Try the steps in post #2 of the following link, you should be able to locate your problem, if this does not help ask from somebody physically or send your project to me, mahbubur.rahman (@ at) nokia.com

    http://www.developer.nokia.com/Commu...ogger&p=718761
    This will create system error if you put this line in AppUi::ConstructL()
    User::Leave(-2);
    But the leave can happen for many reasons that depends on your application.
    Last edited by mahbub_s60; 2011-11-04 at 13:54.

  13. #13
    Registered User GTO_India's Avatar
    Join Date
    Nov 2010
    Posts
    866
    Ii have sent PM to your email just now regarding publishing of my contents.

  14. #14
    Nokia Developer Moderator wizard_hu_'s Avatar
    Join Date
    Feb 2006
    Location
    Mallorca, Holiday
    Posts
    27,683
    Mahbub must be happy now.

  15. #15
    Registered User GTO_India's Avatar
    Join Date
    Nov 2010
    Posts
    866
    Hi wizard Y contents QA failed again . what do you mean mahbub must b happy ?

Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 10
    Last Post: 2010-01-12, 03:35
  2. Installation of "MyApp.jad" not supported error displayed
    By ashishga in forum Mobile Java General
    Replies: 7
    Last Post: 2006-12-11, 20:26
  3. "General: System error" during Installation
    By ktorimaru in forum Mobile Java General
    Replies: 1
    Last Post: 2004-09-18, 15:29
  4. "System error" message after save sync setting message
    By plargo in forum General Development Questions
    Replies: 0
    Last Post: 2003-08-07, 03:29
  5. "System error" message after save sync setting message
    By plargo in forum Smart Messaging
    Replies: 0
    Last Post: 2003-08-07, 02:53

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved