Reputation: 2126
I am a newbie to Android application development. I am reading the ToDo tutorial. This article is based on android SDK version 3.0 and upper, but I am using sdk 2.1, which does not contain 'LoaderManager' class. I want to know is there any alternative for that class in 2.1 sdk? Is it really needed ?
Regards.
Upvotes: 2
Views: 1465
Reputation: 456
You must add the compatibility library to the project.
http://developer.android.com/sdk/compatibility-library.html
and then
import android.support.v4.app.LoaderManager;
Upvotes: 1