GreenDroidを使ってAndroidアプリを作ろうとすると、そこにコードを入れましたが、;
しばらくすると、すでに1つあります。
人々がここにコード全体を求めたように!
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)));
}
}
そして、私は解決策を見つけることができません。私はすでにワークスペースのクリーニングとビルドを試しました。