From 3060ad771009f51b22ad116c89aa1a99894269a6 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 2 Nov 2012 03:03:55 -0700 Subject: [PATCH] Simplified the manifest a little - we don't need a Java class in there. :) --- android-project/AndroidManifest.xml | 25 +++---------------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/android-project/AndroidManifest.xml b/android-project/AndroidManifest.xml index f9a30fde3..e86194ddf 100644 --- a/android-project/AndroidManifest.xml +++ b/android-project/AndroidManifest.xml @@ -12,29 +12,10 @@ directory under src matching the package, e.g. src/com/gamemaker/game/MyGame.java - /**********************************************************/ - package com.gamemaker.game; + then replace "SDLActivity" with the name of your class (e.g. "MyGame") + in the XML below. - import org.libsdl.app.SDLActivity; - import android.os.*; - - /* - * A sample wrapper class that just calls SDLActivity - */ - - public class MyGame extends SDLActivity { - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - } - - protected void onDestroy() { - super.onDestroy(); - } - } - /**********************************************************/ - - then replace "SDLActivity" in the XML below with the name of - your class, e.g. "MyGame" ... + An example Java class can be found in README.android -->