From 6bc7e88ca61709abaf1f266cb1ea8ab8dd983223 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Mon, 13 Jan 2025 14:35:52 -0800
Subject: [PATCH] Added INTRO-androidstudio.md
---
INSTALL.md | 2 +-
docs/INTRO-androidstudio.md | 13 +++++++++++++
2 files changed, 14 insertions(+), 1 deletion(-)
create mode 100644 docs/INTRO-androidstudio.md
diff --git a/INSTALL.md b/INSTALL.md
index f04c4bed528bd..b33c211192bdb 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -4,7 +4,7 @@ SDL supports a number of development environments:
- [CMake](docs/INTRO-cmake.md)
- [Visual Studio on Windows](docs/INTRO-visualstudio.md)
- [Xcode on Apple platforms](docs/INTRO-xcode.md)
-- [Android](docs/INTRO-android.md)
+- [Android Studio](docs/INTRO-androidstudio.md)
- [Emscripten for web](docs/INTRO-emscripten.md)
SDL is also usable in other environments. The basic steps are to use CMake to build the library and then use the headers and library that you built in your project. You can search online to see if anyone has specific steps for your setup.
diff --git a/docs/INTRO-androidstudio.md b/docs/INTRO-androidstudio.md
new file mode 100644
index 0000000000000..10cfcad9cb998
--- /dev/null
+++ b/docs/INTRO-androidstudio.md
@@ -0,0 +1,13 @@
+
+# Introduction to SDL with Android Studio
+
+We'll start by creating a simple project to build and run [hello.c](hello.c)
+
+- Use our handy script to create a template project:
+```sh
+./build-scripts/create-android-project.py org.libsdl.hello docs/hello.c
+```
+- Run Android Studio and open the newly created build/org.libsdl.hello directory
+- Build and run!
+
+Additional information and troubleshooting is available in [README-android.md](README-android.md)