I'm not too worried about renaming the project right now (I'll tackle that later). However, the R classes that I've found are not compatible with the source code. The R class (interpreter project) found in gen/com/thegamecreators/agk_player/R.java contains this:
package com.thegamecreators.agk_player;
public final class R {
public static final class attr {
}
public static final class drawable {
public static final int icon=0x7f020000;
}
public static final class id {
public static final int RelativeLayout1=0x7f060000;
public static final int textView1=0x7f060001;
}
public static final class layout {
public static final int facebookmain=0x7f030000;
public static final int main=0x7f030001;
}
public static final class string {
public static final int app_name=0x7f040000;
public static final int backtext=0x7f040001;
public static final int waittext=0x7f040002;
}
public static final class style {
public static final int Theme_Transparent=0x7f050000;
}
}
In the source code I can see that it asks for fields such as:
R.layout.com_facebook_friendpickerfragment
R.string.com_facebook_choose_friends
R.styleable.com_facebook_friend_picker_fragment_multi_select
The
android one I found seems to contain all of the necessary fields/interfaces but doesn't contain the 'com_' fields and some other fields.
How in the blazes did you get yours to compile?
Edit: regarding the name change, is a *Right-click project*->refactor->rename just as effective as the steps you've listed on the wiki?