Skip to content Skip to sidebar Skip to footer

Android Embedded Felix Missing Requirement Osgi.ee

I'm trying to convince an embedded Apache Felix on Android to start an external bundle. So far I have managed to embed the felix.jar into its own APK and run it as an activity. Wit

Solution 1:

The bundle's manifest says that it requires JavaSE 1.7. And your runtime does not supply that JRE. So it fails to resolve as it should.

You can either change the bundle to target a different osgi.ee (the one in Android) or you can tell Felix to lie and claim that the osgi.ee is JavaSE 1.7.

That is, either change the requirement in the bundle or the capability provided by the framework.

Post a Comment for "Android Embedded Felix Missing Requirement Osgi.ee"