summaryrefslogtreecommitdiffhomepage
path: root/templates/android_project/NativeLoader.java
diff options
context:
space:
mode:
Diffstat (limited to 'templates/android_project/NativeLoader.java')
-rw-r--r--templates/android_project/NativeLoader.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/android_project/NativeLoader.java b/templates/android_project/NativeLoader.java
new file mode 100644
index 00000000..ebbc1800
--- /dev/null
+++ b/templates/android_project/NativeLoader.java
@@ -0,0 +1,11 @@
+package com.raylib.game_sample;
+
+public class NativeLoader extends android.app.NativeActivity
+{
+ static
+ {
+ System.loadLibrary("openal");
+ System.loadLibrary("raylib");
+ System.loadLibrary("raylib_game");
+ }
+ } \ No newline at end of file