Updated tweaks to get up and running

This commit is contained in:
Joe Bowser
2012-04-12 14:18:06 -07:00
parent 1794f2e047
commit f2526bbc78
6 changed files with 94 additions and 71 deletions
@@ -69,7 +69,7 @@ public class ActivityPlugin extends Plugin {
public void startActivity(String className) {
try {
Intent intent = new Intent().setClass(this.ctx.getContext(), Class.forName(className));
Intent intent = new Intent().setClass(this.ctx, Class.forName(className));
LOG.d(TAG, "Starting activity %s", className);
this.ctx.startActivity(intent);
} catch (ClassNotFoundException e) {