-
SDL2: Download the source code and unzip it in
dependencies/android/SDL
. -
GLEW: Download the binaries and unzip it in
dependencies/android/glew
. -
libogg: Download and unzip it in
dependencies/android/libogg
. Then, copy "config_types.h" from here and paste it in "./libogg/include/ogg/". -
libvorbis: Download and unzip it in
dependencies/android/libvorbis
. -
libtheora: Download and unzip it in
dependencies/android/libtheora
. -
Ensure the symbolic links in
[root]/android/app/jni
are correct:-
SDL
-> Root of the Android SDL dependency -
src
-> Root of the RSDKv3 repositoryTo add symbolic links, do the following:
- Windows:
mklink /d "[name-of-symlink]" "[path]"
- Linux:
ln -s "[path]" "[name-of-symlink]"
- Windows:
-
-
Open
[root]/android/
in Android Studio, install the NDK and everything else that it asks for, and build.
Delete android/app/build
and try again. This occurs when the path is short enough to build, but too long for a rebuild.
Your paths are too long. Try renaming the symbolic links to something shorter, or make a symbolic link to RSDKv3 closer to the root of the drive and open the project through there (e.x. C:/RSDKv3/android). I haven't had either issue since I did this.