DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
Android Reflection API
The Apache Tuscany SCA library relies a lot on the Java Reflection API. The Android API provides the Reflection API, otherwise on the latest Android SDK version (m5-rc15) it is not correctly implemented with some Reflection methods throwing exceptions. At Android developers list there are many topics about this problem and the Android developers tell that in next release it will be fixed. So far we are using the retrotranslator as a workaround for this problem until the next SDK version is released. Unfortunately the next SDK release date is uncertain.
Android JAR converter excluding the non-class files
Also, for an Android application to use the SCA library, the library (.jar) must be converted to the Android format. Unfortunately when a jar file is converted to the Android format, it only converts the class files contained in the jar files and ignores the other files (resources). It would be great if the converter also support the conversion of these resources contained in jar to the Android resource format (either those located in rsc or asset folder).
As a workaround for this problem, it was developed a simple tool that extracts all non-class files from a jar file (for example, the SCA library jar) to an Android application assets folder. Unfortunately, we are not being able to access anything using the AssetManager (the class used to access the resouces placed in the assets folder), for example, we have tried to list the files using assetManager.list(path), but I got no files for any combination of path ( / , /assets/ , assets/ , ... ). It would be great if it could be fixed for next SDK release too.