summaryrefslogtreecommitdiff
path: root/tests/projects
diff options
context:
space:
mode:
authorYi Jianlong <[email protected]>2025-12-15 10:10:35 +0800
committerYi Jianlong <[email protected]>2025-12-15 15:54:41 +0800
commit8e63376d62415825aa2836df19ebb7c895aa7a2e (patch)
treee7383f5f288453a47c56d1228505348d25d0da4a /tests/projects
parent7298699afb4e2baf50978cda9b2cc8822170301b (diff)
resolve review comments
Diffstat (limited to 'tests/projects')
-rw-r--r--tests/projects/android/native_app/android/AndroidManifest.xml (renamed from tests/projects/c++/ndk_raylib/android/AndroidManifest.xml)0
-rw-r--r--tests/projects/android/native_app/android/debug.jks (renamed from tests/projects/c++/ndk_raylib/android/debug.jks)bin2487 -> 2487 bytes
-rw-r--r--tests/projects/android/native_app/android/res/mipmap-mdpi/icon.png (renamed from tests/projects/c++/ndk_raylib/android/res/mipmap-mdpi/icon.png)bin2643 -> 2643 bytes
-rw-r--r--tests/projects/android/native_app/android/res/mipmap/icon.png (renamed from tests/projects/c++/ndk_raylib/android/res/mipmap/icon.png)bin2643 -> 2643 bytes
-rw-r--r--tests/projects/android/native_app/android/res/values/strings.xml (renamed from tests/projects/c++/ndk_raylib/android/res/values/strings.xml)0
-rw-r--r--tests/projects/android/native_app/android/res/values/styles.xml (renamed from tests/projects/c++/ndk_raylib/android/res/values/styles.xml)0
-rw-r--r--tests/projects/android/native_app/src/main.cpp (renamed from tests/projects/c++/ndk_raylib/src/main.cpp)0
-rw-r--r--tests/projects/android/native_app/xmake.lua18
-rw-r--r--tests/projects/c++/ndk_raylib/xmake.lua22
9 files changed, 18 insertions, 22 deletions
diff --git a/tests/projects/c++/ndk_raylib/android/AndroidManifest.xml b/tests/projects/android/native_app/android/AndroidManifest.xml
index 40cfd7066..40cfd7066 100644
--- a/tests/projects/c++/ndk_raylib/android/AndroidManifest.xml
+++ b/tests/projects/android/native_app/android/AndroidManifest.xml
diff --git a/tests/projects/c++/ndk_raylib/android/debug.jks b/tests/projects/android/native_app/android/debug.jks
index b4eb4f9f2..b4eb4f9f2 100644
--- a/tests/projects/c++/ndk_raylib/android/debug.jks
+++ b/tests/projects/android/native_app/android/debug.jks
Binary files differ
diff --git a/tests/projects/c++/ndk_raylib/android/res/mipmap-mdpi/icon.png b/tests/projects/android/native_app/android/res/mipmap-mdpi/icon.png
index 743413831..743413831 100644
--- a/tests/projects/c++/ndk_raylib/android/res/mipmap-mdpi/icon.png
+++ b/tests/projects/android/native_app/android/res/mipmap-mdpi/icon.png
Binary files differ
diff --git a/tests/projects/c++/ndk_raylib/android/res/mipmap/icon.png b/tests/projects/android/native_app/android/res/mipmap/icon.png
index 743413831..743413831 100644
--- a/tests/projects/c++/ndk_raylib/android/res/mipmap/icon.png
+++ b/tests/projects/android/native_app/android/res/mipmap/icon.png
Binary files differ
diff --git a/tests/projects/c++/ndk_raylib/android/res/values/strings.xml b/tests/projects/android/native_app/android/res/values/strings.xml
index e98a18284..e98a18284 100644
--- a/tests/projects/c++/ndk_raylib/android/res/values/strings.xml
+++ b/tests/projects/android/native_app/android/res/values/strings.xml
diff --git a/tests/projects/c++/ndk_raylib/android/res/values/styles.xml b/tests/projects/android/native_app/android/res/values/styles.xml
index 621547380..621547380 100644
--- a/tests/projects/c++/ndk_raylib/android/res/values/styles.xml
+++ b/tests/projects/android/native_app/android/res/values/styles.xml
diff --git a/tests/projects/c++/ndk_raylib/src/main.cpp b/tests/projects/android/native_app/src/main.cpp
index 4c8253ead..4c8253ead 100644
--- a/tests/projects/c++/ndk_raylib/src/main.cpp
+++ b/tests/projects/android/native_app/src/main.cpp
diff --git a/tests/projects/android/native_app/xmake.lua b/tests/projects/android/native_app/xmake.lua
new file mode 100644
index 000000000..81ac545e5
--- /dev/null
+++ b/tests/projects/android/native_app/xmake.lua
@@ -0,0 +1,18 @@
+add_rules("mode.debug", "mode.release")
+
+add_requires("raylib 5.5.0")
+
+target("raydemo_android")
+ set_kind("binary")
+ set_languages("c++17")
+ add_files("src/main.cpp")
+ add_packages("raylib")
+
+ add_rules("android.native_app", {
+ android_sdk_version = "35",
+ android_manifest = "android/AndroidManifest.xml",
+ android_res = "android/res",
+ keystore = "android/debug.jks",
+ keystore_pass = "123456",
+ package_name = "com.raylib.demo"
+ })
diff --git a/tests/projects/c++/ndk_raylib/xmake.lua b/tests/projects/c++/ndk_raylib/xmake.lua
deleted file mode 100644
index 08a102d9d..000000000
--- a/tests/projects/c++/ndk_raylib/xmake.lua
+++ /dev/null
@@ -1,22 +0,0 @@
-add_rules("mode.debug", "mode.release")
-
-
-add_requires("raylib 5.5.0")
-
-target("raydemo_android")
- set_kind("binary")
- set_languages("c++17")
- add_files("src/main.cpp")
- add_packages("raylib")
-
- if is_plat("android") then
-
- add_rules("android.native_app", {
- android_sdk_version = "35",
- android_manifest = "android/AndroidManifest.xml",
- android_res = "android/res",
- keystore = "android/debug.jks",
- keystore_pass = "123456",
- package_name = "com.raylib.demo"
- })
- end