dnkoutso
dnkoutso

Reputation: 6061

Honeycomb app, LocalBroadcastManager

I am developing an app for Android 3.x and want to use LocalBroadcastManager. However, it is not available in the default Android 3.x SDK but only in the Android support package.

Do I just use the one from the support package instead?

p.s The same question can also apply for ViewPager, the control does not exist unless you include the Android support package into your project.

Upvotes: 3

Views: 1360

Answers (1)

Shiki
Shiki

Reputation: 16808

AFAIK, LocalBroadcastManager is currently only available in the Support Package. It looks like that is the case with ViewPager as well. It's easy to add the Support Package to your app. More details on that here.

Upvotes: 2

Related Questions