Changes between Version 32 and Version 33 of DevelopingSymbianAppWithCarbide


Ignore:
Timestamp:
Jul 22, 2008 12:16:15 PM (16 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopingSymbianAppWithCarbide

    v32 v33  
    143143[[Image(build_problems.JPG)]] 
    144144 
    145 We are now ready to build the .SIS file to be deployed to the phone. 
    146  
    147  
    148 ---- 
    149  
    150  
    151 == Preparing the .sis File == 
    152  
    153 The .sis file is the packaging for the executable to be deployed in the device. The .sis file can be created very easily with Carbide C++. 
     145We are now ready to build the .sis/.sisx file to be deployed to the phone. 
     146 
     147 
     148---- 
     149 
     150 
     151== Preparing the .sis/.sisx File == 
     152 
     153The .sis file is the packaging for the executable to be deployed in the device. The .sisx file is a signed .sis. Both the .sis and .sisx file can be created very easily with Carbide C++. 
    154154 
    155155 
    156156=== Set the .pkg File to be Used === 
    157157 
    158 First we'll need to configure the .pkg file to be used to generate the .sis file. PJSIP provides some sample .pkg files which can be used, however there may be few editing needed before you can use them (this is because the .pkg file contains absolute directory path for your Symbian SDK, which may be different on your installation). 
     158First we'll need to configure the .pkg file to be used to generate the .sisx file. PJSIP provides some sample .pkg files which can be used, however there may be few editing needed before you can use them (this is because the .pkg file contains absolute directory path for your Symbian SDK, which may be different on your installation). 
    159159 
    160160Assign the .pkg file to be used by the project by selecting Project Properties: 
     
    168168 1. Set the ''PKG File'' by clicking ''Browse...'' button, and choose {{{symbian_ua_udeb.pkg}}} from PJSIP's {{{build.symbian}}} directory. 
    169169 
    170 We can leave the SIS creation and Signing settings empty. 
     170We can leave the "SIS creation and Signing" settings empty to use the default settings. 
    171171 
    172172The dialog window now should look like this: 
     
    203203 
    204204 
    205 === Build the SIS File === 
    206  
    207 Once PKG has been setup on the project, a SIS file will be created everytime we build the project. So lets build the project now. 
     205=== Build the SISX File === 
     206 
     207Once PKG has been setup on the project, a SISX file will be created everytime we build the project. So lets build the project now. 
    208208 
    209209Right click '''bld.inf''' or '''pjproject''' from the ''Symbian Project Navigator'' pane, and select '''Build Target Only''':