I worked on this some more and got it to build. I don't know whether the project repository code could be modified to still provide an "out-of-the-box" build for 2.3.3 API 10, but these are the steps I took.
Steps to Build revision 771.
Update Android Toolkits and SDK, etc (not sure if this was necessary for me but I did anyway)
Reset Project properties To API Level 10 for Android 2.3.3
NOTE: If you get errors about R not being found (in gen folder), it's because the resources have not been all fixed. I note this because I had forgotten it and went on a goose chase thinking that my gen folder was read-only (weird WIN7 too).
Removed:
res/drawable/actionbaritem.xml
In:
res/layout/frontend_indicator.xml
Removed:
android:background="@drawable/actionbaritem"
Removed folders:
res/values-large-v11
res/values-v11
res/values-xlarge-v11
In:
MDActivity, MDFragmentActivity, MDListActivity
Removed:
@Override
public boolean onOptionsItemSelected(MenuItem item) {
In ActionView.java
changed from:
public ActionView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
changed to:
public ActionView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs);
}
I think that's about it!!
Cheers,
John