libmx3 / mx3

a sample project showcasing/collecting cross platform techniques on mobile
MIT License
1.17k stars 149 forks source link

Build and run djinni on windows #49

Closed kepkin closed 9 years ago

kepkin commented 9 years ago

Eventhough it will build and run djinni you still not be able to build android with make android. In order to build android you have to do the following:

> make android # will fail in the end, but will build all dependencies
> cd example_android
> gradlew.bat app:assembleDebug

You also need to install cygwin because of using Makefile.

kepkin commented 9 years ago

BTW, I don't have MAC to test that it works on it too.

skabbes commented 9 years ago

This is amazing, our Travis build runs on a Mac, so that sort of takes care of itself. I'm going to look over this more closely tonight, but I see no reason not to merge.

Quick question, do you know if it is common practice to commit the gradle wrappers to source control?

skabbes commented 9 years ago

I checked it out, best practice is to commit the wrappers. This is an awesome first step! Thanks!