I have an android project which I would like to port to BlackBerry 10. Acording to BB online repackaging tool the project is BAR compatible. So I added the BlackBerry nature using their Eclipse plugin and loaded it into BB 10 Simulator. But the app craches since BB obviously does not recognize the android-async-http
library used in the project:
02-13 08:22:14.228: E/AndroidRuntime(28778620): java.lang.ExceptionInInitializerError
02-13 08:22:14.228: E/AndroidRuntime(28778620): at java.lang.Class.classForName(Native Method)
02-13 08:22:14.228: E/AndroidRuntime(28778620): at java.lang.Class.forName(Class.java:234)
02-13 08:22:14.228: E/AndroidRuntime(28778620): at java.lang.Class.forName(Class.java:181)
02-13 08:22:14.228: E/AndroidRuntime(28778620): Caused by: java.lang.NoClassDefFoundError: com.loopj.android.http.AsyncHttpClient
I don't know the BlackBerry 10 system architecture so I'm a bit lost. Is there any way to get it working on BB10?