diff options
| author | Ray San <[email protected]> | 2017-10-10 14:06:21 +0200 |
|---|---|---|
| committer | Ray San <[email protected]> | 2017-10-10 14:06:21 +0200 |
| commit | ef6674a99dcb8b7d80765e7cfd6354e4212477a4 (patch) | |
| tree | c783817cbb3a8d28925b1e90e6b3be7fbbe78ad6 /templates/android_project/NativeLoader.java | |
| parent | 2051be3825afb89e7dc01711c573827491e14789 (diff) | |
| download | raylib-ef6674a99dcb8b7d80765e7cfd6354e4212477a4.tar.gz raylib-ef6674a99dcb8b7d80765e7cfd6354e4212477a4.zip | |
More work on Android building...
Diffstat (limited to 'templates/android_project/NativeLoader.java')
| -rw-r--r-- | templates/android_project/NativeLoader.java | 11 |
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 |
