From 30f41c02aec763d32e62351452da9ef582bc3472 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 6 Mar 2026 13:30:59 -0800 Subject: Move contrib libraries to contrib repo --- .../android-project/app/jni/src/YourSourceHere.c | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 contrib/SDL-3.2.8/android-project/app/jni/src/YourSourceHere.c (limited to 'contrib/SDL-3.2.8/android-project/app/jni/src/YourSourceHere.c') diff --git a/contrib/SDL-3.2.8/android-project/app/jni/src/YourSourceHere.c b/contrib/SDL-3.2.8/android-project/app/jni/src/YourSourceHere.c deleted file mode 100644 index 87b8297..0000000 --- a/contrib/SDL-3.2.8/android-project/app/jni/src/YourSourceHere.c +++ /dev/null @@ -1,26 +0,0 @@ -#include -#include - -/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */ -/* */ -/* Remove this source, and replace with your SDL sources */ -/* */ -/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */ - -int main(int argc, char *argv[]) { - (void)argc; - (void)argv; - if (!SDL_Init(SDL_INIT_EVENTS | SDL_INIT_VIDEO)) { - SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_Init failed (%s)", SDL_GetError()); - return 1; - } - - if (!SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_INFORMATION, "Hello World", - "!! Your SDL project successfully runs on Android !!", NULL)) { - SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_ShowSimpleMessageBox failed (%s)", SDL_GetError()); - return 1; - } - - SDL_Quit(); - return 0; -} -- cgit v1.2.3