aboutsummaryrefslogtreecommitdiffstats
path: root/INSTALLATION
blob: 86878088d7df34d4004b03b8b204e773ad6234a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
To play BlueMind on GNU/Linux, Mac OS X or Microsoft Windows, 
you need at least LÖVE 0.9, which can be downloaded here:
    https://love2d.org/

If you're using the git repository you need first to do:
    git submodule update --init
to fetch dependencies.


Android 4.1 or newer is required to run BlueMind since it uses Android NSD.

To build an APK for Android, you'll need the Android's SDK and NDK.
Then, clone the love-android-sdl2 repository with changes for BlueMind:
    git clone -b bluemind https://bitbucket.org/piernov/love-android-sdl2/
Create the assets directory:
    mkdir love-android-sdl2/assets

Then, got to BlueMind's directory and zip all the files to game.love:
    zip -r game.love *
And move it:
    mv game.love ../love-android-sdl2/assets/

Build natives libraries:
    ndk-build
And the APK itself:
    ant debug
To install it on your device (with ADB enabled) do:
    ant debug install