From 38dd6bcd32565e6871afcc6dad04789f1fdf6eca Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Sat, 28 Dec 2024 03:22:53 +0100
Subject: [PATCH] docs: gradle needs package identifier + change example
Activity class path
---
docs/README-android.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/README-android.md b/docs/README-android.md
index 4077813dfcae2..722a886b1eb89 100644
--- a/docs/README-android.md
+++ b/docs/README-android.md
@@ -170,13 +170,13 @@ build-scripts/create-android-project.py --variant aar com.yourcompany.yourapp <
Customizing your application name
================================================================================
-To customize your application name, edit AndroidManifest.xml and replace
+To customize your application name, edit AndroidManifest.xml and build.gradle to replace
"org.libsdl.app" with an identifier for your product package.
Then create a Java class extending SDLActivity and place it in a directory
under src matching your package, e.g.
- src/com/gamemaker/game/MyGame.java
+ app/src/main/java/com/gamemaker/game/MyGame.java
Here's an example of a minimal class file: