Я использую следующий код в одном из моих Activators
:
/**
* Returns the bundle id of the bundle that contains the provided object, or <code>null</code>
* if the bundle could not be determined.
*
* @param clazz the object to test
* @return the build ID or <code>null</code>
*/
public String getBundleId(Class<? extends Object> clazz) {
if (clazz == null) return null;
final PackageAdmin packageAdmin = getBundleAdmin();
if (packageAdmin == null) return null;
final Bundle source = packageAdmin.getBundle(clazz);
if (source == null || source.getSymbolicName() == null) return null;
return source.getSymbolicName();
}
/**
* Returns the OSGi Package Admin service, if available.
*/
public PackageAdmin getBundleAdmin() {
if (bundleTracker == null) {
bundleTracker = new ServiceTracker(getContext(), PackageAdmin.class.getName(), null);
bundleTracker.open();
}
return (PackageAdmin) bundleTracker.getService();
}
И да, я знаю, что PackageAdmin
устарел, но у меня не было времени обновить его...