mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
18 lines
435 B
Text
18 lines
435 B
Text
|
Here's how I'm building crosswords for Android.
|
||
|
|
||
|
First, my working directory is XWords within this (android/)
|
||
|
directory.
|
||
|
|
||
|
Build the jni library (the cross-platform code):
|
||
|
# ../scripts/ndkbuild.sh
|
||
|
|
||
|
Then build the app for the emulator (first time)
|
||
|
# ant install
|
||
|
|
||
|
subsequent times
|
||
|
# ant reinstall
|
||
|
|
||
|
Build for a device (requires you've set up your keys. I did this too
|
||
|
long ago to remember how but the info's easy to find):
|
||
|
# ant release
|