Skip to content

Instantly share code, notes, and snippets.

@jaddison
Created September 26, 2012 21:47
Show Gist options
  • Save jaddison/3790821 to your computer and use it in GitHub Desktop.
Save jaddison/3790821 to your computer and use it in GitHub Desktop.
Intellij IDEA 10 IDE libGDX Android application
package com.example.libgdxexample;
import android.os.Bundle;
import com.badlogic.gdx.backends.android.AndroidApplication;
public class ExampleActivity extends AndroidApplication
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
initialize(new Game(), false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment