2

I want to create a common 3rd party library, that can be shared and used by different applications and be consistent. Can we acheive this ?.If yes, how and where will this library be installed ?

and how can these library files be accessed from other apps ?

Carbonizer
  • 1,763
  • 2
  • 18
  • 22

2 Answers2

1

Yes you can do this. You create and compile the libary. You can either install it by itself ahead of the applications that depend on it, or with the applications. The desktop manager can use ALX files generated by the JDE to do this for you, or you can use JAD files for OTA installation. A libarary is just a code module like any other that does not have a desktop icon, so it installs in the same place as the rest of the modules.

Richard
  • 8,950
  • 2
  • 16
  • 24
0

What is your goal with a BlackBerry library? rapc can compile jar libraries into your application, which would be the easist way to do this.

Michael Donohue
  • 11,606
  • 5
  • 29
  • 44
  • Need to create a SSO Custom library for all applications, which will be used to provide standard login and authentication for registered applications – Carbonizer Dec 20 '10 at 20:37