|
|
@ -53,8 +53,6 @@ support of DDS texture files (compressed and uncompressed) along with mipmaps su |
|
|
|
|
|
|
|
Lots of code changes and lot of testing have concluded in this amazing new raylib 1.1. |
|
|
|
|
|
|
|
Enjoy it. |
|
|
|
|
|
|
|
notes on raylib 1.2 |
|
|
|
------------------- |
|
|
|
|
|
|
@ -85,7 +83,7 @@ features |
|
|
|
* Powerful math module for Vector and Matrix operations [raymath] |
|
|
|
* Audio loading and playing with streaming support (WAV and OGG) |
|
|
|
* Custom color palette for fancy visuals on raywhite background |
|
|
|
* Multiple platforms support: Windows, Linux, Mac, Android and Raspberry Pi |
|
|
|
* Multiple platforms support: Windows, Linux, Mac, **Android** and **Raspberry Pi** |
|
|
|
|
|
|
|
raylib uses on its core module the outstanding [GLFW3] (http://www.glfw.org/) library. The best option by far I found for |
|
|
|
multiplatform (Windows, Linux, Mac) window/context and input management (clean, focused, great license, well documented, modern, ...). |
|
|
@ -143,21 +141,23 @@ _Step 2._ Navigate from command line to raylib/src/ folder and type: |
|
|
|
|
|
|
|
_Step 1._ Make sure you have installed Android SDK, Android NDK and Apache Ant tools: |
|
|
|
|
|
|
|
* Download and decompress on C: [Android SDK r23] (http://dl.google.com/android/android-sdk_r23.0.2-windows.zip) |
|
|
|
* Download and decompress on C: [Android NDK r10b] (http://dl.google.com/android/ndk/android-ndk32-r10b-windows-x86.zip) |
|
|
|
* Download and decompress on C: [Apache Ant 1.9.4] (http://ftp.cixug.es/apache//ant/binaries/apache-ant-1.9.4-bin.zip) |
|
|
|
> Download and decompress on C: [Android SDK r23](http://dl.google.com/android/android-sdk_r23.0.2-windows.zip) |
|
|
|
|
|
|
|
> Download and decompress on C: [Android NDK r10b](http://dl.google.com/android/ndk/android-ndk32-r10b-windows-x86.zip) |
|
|
|
|
|
|
|
> Download and decompress on C: [Apache Ant 1.9.4](http://ftp.cixug.es/apache//ant/binaries/apache-ant-1.9.4-bin.zip) |
|
|
|
|
|
|
|
_Step 2._ Create the following environment variables with the correct paths: |
|
|
|
|
|
|
|
* ANDROID_SDK_TOOLS = C:\android-sdk\platform-tools |
|
|
|
* ANDROID_NDK_ROOT = C:\android-ndk-r10b |
|
|
|
* ANT_HOME = C:\apache-ant-1.9.4 |
|
|
|
ANDROID_SDK_TOOLS = C:\android-sdk\platform-tools |
|
|
|
ANDROID_NDK_ROOT = C:\android-ndk-r10b |
|
|
|
ANT_HOME = C:\apache-ant-1.9.4 |
|
|
|
|
|
|
|
_Step 3._ Navigate from command line to folder raylib/template_android/ and type: |
|
|
|
|
|
|
|
%ANDROID_NDK_ROOT%\ndk-build |
|
|
|
|
|
|
|
* NOTE: libraylib.a will be generated in folder raylib/src_android/obj/local/armeabi/, it must be copied |
|
|
|
NOTE: libraylib.a will be generated in folder raylib/src_android/obj/local/armeabi/, it must be copied |
|
|
|
to Android project; if using raylib/template_android project, copy it to raylib/template_android/jni/libs/. |
|
|
|
|
|
|
|
building examples |
|
|
@ -189,15 +189,17 @@ _Step 2._ Navigate from command line to raylib/examples/ folder and type: |
|
|
|
|
|
|
|
_Step 1._ Make sure you have installed Android SDK, Android NDK and Apache Ant tools: |
|
|
|
|
|
|
|
* Download and decompress on C: [Android SDK r23] (http://dl.google.com/android/android-sdk_r23.0.2-windows.zip) |
|
|
|
* Download and decompress on C: [Android NDK r10b] (http://dl.google.com/android/ndk/android-ndk32-r10b-windows-x86.zip) |
|
|
|
* Download and decompress on C: [Apache Ant 1.9.4] (http://ftp.cixug.es/apache//ant/binaries/apache-ant-1.9.4-bin.zip) |
|
|
|
> Download and decompress on C: [Android SDK r23] (http://dl.google.com/android/android-sdk_r23.0.2-windows.zip) |
|
|
|
|
|
|
|
> Download and decompress on C: [Android NDK r10b] (http://dl.google.com/android/ndk/android-ndk32-r10b-windows-x86.zip) |
|
|
|
|
|
|
|
> Download and decompress on C: [Apache Ant 1.9.4] (http://ftp.cixug.es/apache//ant/binaries/apache-ant-1.9.4-bin.zip) |
|
|
|
|
|
|
|
_Step 2._ Create the following environment variables with the correct paths: |
|
|
|
|
|
|
|
* ANDROID_SDK_TOOLS = C:\android-sdk\platform-tools |
|
|
|
* ANDROID_NDK_ROOT = C:\android-ndk-r10b |
|
|
|
* ANT_HOME = C:\apache-ant-1.9.4 |
|
|
|
ANDROID_SDK_TOOLS = C:\android-sdk\platform-tools |
|
|
|
ANDROID_NDK_ROOT = C:\android-ndk-r10b |
|
|
|
ANT_HOME = C:\apache-ant-1.9.4 |
|
|
|
|
|
|
|
_Step 3._ To compile project, navigate from command line to folder raylib/template_android/ and type: |
|
|
|
|
|
|
|