BuildStendhalForAndroid: Difference between revisions
Content deleted Content added
imported>AntumDeluge note that building from IDE instructions not yet available |
imported>AntumDeluge →Gradle: command line examples for Windows |
||
Line 56:
$ ANDROID_SDK_ROOT="/path/to/sdk/root" ./gradlew build
</pre>
Windows '''cmd''' example (note that you do not need to include the ".bat" filename extension):
<pre>
# with env variable set or sdk.dir set in local.properties
> gradlew build
# manually setting env variable (do not use quotes)
> set ANDROID_SDK_ROOT=C:\\path\\to\\sdk\\root
> gradlew build
</pre>
After build completes, the resulting .apk packages will be located in <span style="color:green;"><source root>/build/build_android_client/outputs/apk</span>.
=== Ant ===
| |||