mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-25 00:29:18 -05:00
Updated Working for Android (markdown)
@ -60,6 +60,22 @@ Then build the apk with:
|
|||||||
|
|
||||||
mingw32-make PLATFORM=PLATFORM_ANDROID
|
mingw32-make PLATFORM=PLATFORM_ANDROID
|
||||||
|
|
||||||
|
**WARNING: Make sure the MAKE tool to use is properly configured in the Makefile:**
|
||||||
|
```make
|
||||||
|
# Define default make program
|
||||||
|
MAKE = make
|
||||||
|
|
||||||
|
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
|
||||||
|
ifeq ($(PLATFORM_OS),WINDOWS)
|
||||||
|
MAKE = mingw32-make
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
ifeq ($(PLATFORM),PLATFORM_ANDROID)
|
||||||
|
MAKE = mingw32-make
|
||||||
|
endif
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
_Step 2:_ To install the APK into connected device (previously intalled drivers and activated USB debug mode on device):
|
_Step 2:_ To install the APK into connected device (previously intalled drivers and activated USB debug mode on device):
|
||||||
|
|
||||||
%ANDROID_SDK_TOOLS%\adb install simple_game.apk
|
%ANDROID_SDK_TOOLS%\adb install simple_game.apk
|
||||||
|
|||||||
Reference in New Issue
Block a user