Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
New Developer
husainahmad
Posts: 9
Registered: ‎11-19-2009
Accepted Solution

Application Version

Hi, Expert

 

i build an application which version 1.0, next time i will create the other version 2.0, 

my question is how do i know the each version on my code?

 

Thank You

 

Please use plain text.
Developer
yosoh
Posts: 213
Registered: ‎07-18-2008

Re: Application Version

[ Edited ]

 

// Retrieve a handle for a module.
int handle = CodeModuleManager.getModuleHandle("test_module");

// Retrieve specific information about a module.
String name = CodeModuleManager.getModuleName( handle );
String vendor = CodeModuleManager.getModuleVendor( handle );
String description = CodeModuleManager.getModuleDescription( handle );
int version = CodeModuleManager.getModuleVersion( handle );
int size = CodeModuleManager.getModuleCodeSize( handle );
int timestamp = CodeModuleManager.getModuleTimestamp( handle );

 this might help you

 

--------------------------------------------------
problemSolved() ? kudosPlease():kudosPlease();
Please use plain text.
New Developer
husainahmad
Posts: 9
Registered: ‎11-19-2009

Re: Application Version

hi yosoh

 

its work...

 

thank you for any help

husainahmad

Please use plain text.
Developer
satish4ru
Posts: 329
Registered: ‎12-17-2010
My Carrier: developer

Re: Application Version

hii ,

 

 how to find the name of the module please help me . i am using os 5.0 .

 

I want to display my application version please tell me how to find it.. 

Please use plain text.
New Developer
Shinji
Posts: 6
Registered: ‎06-30-2011
My Carrier: Orange.

Re: Application Version

Try this :

 

ApplicationDescriptor.currentApplicationDescriptor().getVersion();

 

Please use plain text.