OSGI Bundle using Android API is showing "java.lang.RuntimeException: Stub! at android.util.Log.d" -
in eclipse plugin project, trying use android api. showing message on logcat. in addition adding android.jar class path, prepared android.jar bundle follwing this link. did following: 1- writing manifest.txt contains following: manifest-version: 1.0 created-by: myself bundle-manifestversion: 2 bundle-name: android bundle-description: package android in osgi bundle bundle-version: 4.4.0 bundle-classpath: .,android.jar bundle-symbolicname: android export-package: android.util 2- creating bundle jar file running following command: jar cvfm android-bundle.jar manifest.txt android.jar 3- have bundle android-bundle.jar , open in eclipse file-> new -> project...-> plug-in development -> "plug-in existing jar archives" next, create bundle use android api. below activator class has log message: package osgi_android_bundle; import org.osgi.framework.bundleactivator; import org.osgi.framework.bundlecontext; import android.util.log; public class a...