views:

316

answers:

3

Hello !

How can I use Adobe Reader Mobile SDK 9 to develop a pdf/epub reader for blackberry device?

Please help me if you have any idea about Adobe Reader mobile SDK.

Thanks.

+2  A: 

No, RMSDK can't be used on Java platforms unless you can use JNI.

Eno
Thanks for your response !
Badal
Just to clarify: RMSDK is a C++ library therefore, you will need to build it using Android NDK, and then write a JNI layer so your Java app can talk to it.
Eno
A: 

how you can build RMSDK through Android NDK , any help ?

Abdul Mateen
A: 

Have you got any solution for this ? Please let me know if you have been able to do this. I am trying to build RMSDK using Android NDK, but I am not able to successfully build it.

Thanks and waiting for your support.

The problem is that the C runtime in Android is very limited. Some C++ code might use STL for example, and so it won't compile in the NDK because it doesn't have STL. However, if you added the missing pieces to the NDK, you should be able to use it build just about anything.
Eno