I'm working on nifty enhancements to an Android app and I've cloned its source from android.git.kernel.org. How does one deal with imports not found, for example:
import android.content.entity*
import android.os.ServiceManager
import com.google.android.collect.*
import com.android.internal.*
etc. This is with a checkout of tag Android-2.1_r1 Android2.1-update1 with ADK 0.9.7.v20100514. I'm not seeing them in the platform source - maybe I'm looking the wrong way? I spose the answer is a library or something, but it's my first time in ...
ty!