When I try to make a make an Android app with GreenDroid, so I put the code in there but it asks for a ;
while there already is one.
as people asked for the whole code hereby the whole code!
import greendroid.app.GDApplication;
import android.content.Intent;
import android.net.Uri;
public class GreenDroidTest extends GDApplication {
@Override
public Class<?> getHomeActivityClass() {
return GreenDroidTest.class;
}
@Override
public Intent getMainApplicationIntent() {
return new Intent(Intent.ACTION_VIEW, Uri.parse(getString(R.string.app_url)));
}
}
And I can't find any solutions. I already tried Cleaning and building the workspace.