snowkit / snow

A low level cross platform framework for Haxe. Mac, Windows, Linux, Android, iOS, WebGL.
http://snowkit.org/snow
MIT License
133 stars 35 forks source link

Android build; Need to distinguish debug/release and archs #99

Open kevinresol opened 7 years ago

kevinresol commented 7 years ago

Currently it doesn't has any switches about that.

Not android expert but I think one should always build all three archs (arm64-v8a, armeab-v7a, x86) for properly deploying on devices.

ruby0x1 commented 7 years ago

yea, you must manually specify --archs arm64, armv7 etc and for --debug as well. This is because of how gradle works, it doesn't really make it easy to get this information and I had stopped to first figure out where the engine core was landing for 1.0.

That is: all you need to do is specify the flags, the build process takes care of the rest.

So immediate term, you must modify flow.gradle directly unfortunately, as I couldn't at the time get gradle to cooperate.

kevinresol commented 7 years ago

all you need to do is specify the flags

No problem. I can do that