From c9ede56339f7faf96bb6ed105fd60dfcaf01655f Mon Sep 17 00:00:00 2001 From: ruki Date: Tue, 16 Dec 2025 23:25:49 +0800 Subject: format code and fix keystore --- tests/projects/android/native_app/src/main.cpp | 33 +++++++++++--------------- 1 file changed, 14 insertions(+), 19 deletions(-) (limited to 'tests/projects/android/native_app/src/main.cpp') diff --git a/tests/projects/android/native_app/src/main.cpp b/tests/projects/android/native_app/src/main.cpp index 4c8253ead..42f5b9a37 100644 --- a/tests/projects/android/native_app/src/main.cpp +++ b/tests/projects/android/native_app/src/main.cpp @@ -1,21 +1,16 @@ #include -int main() { - InitWindow(0, 0, "Hello, xmake for raylib android!"); - - SetTargetFPS(60); - - while (!WindowShouldClose()) { // Main game loop - BeginDrawing(); - - ClearBackground(BLACK); - - DrawText("Hello, xmake for raylib android!", 250, 250, 25, BLUE); - - EndDrawing(); - } - - CloseWindow(); - - return 0; -} \ No newline at end of file +int main(int argc, char** argv) { + InitWindow(0, 0, "Hello, xmake for raylib android!"); + SetTargetFPS(60); + + while (!WindowShouldClose()) { + BeginDrawing(); + ClearBackground(BLACK); + DrawText("Hello, xmake for raylib android!", 250, 250, 25, BLUE); + EndDrawing(); + } + + CloseWindow(); + return 0; +} -- cgit v1.3.1