Artifact [6e34ab9c85]
Not logged in

Artifact 6e34ab9c85f926892797ba6c17e9b57bebfc6d60:

Wiki page [Building AndroWish] by chw 2019-04-26 07:07:50.
D 2019-04-26T07:07:50.740
L Building\sAndroWish
P e7a059afe944265351123979f52fddee1a18d24c
U chw
W 2247
<h2>Building AndroWish</h2>

<h3>Requirements</h3>

  *  <a href="http://developer.android.com/sdk/index.html">Android SDK</a> (version 12 or later)
  *  <a href="http://developer.android.com/tools/sdk/ndk/index.html">Android NDK</a> (r7 or later)
  *  Minimum API level support by SDL is 10 (Android 2.3.3), requested API level from <tt>project.properties</tt> is 14 (Android 4.0)
  *  CPUs supported for native shared libraries are currently <tt>armeabi</tt> and <tt>x86</tt>. This can be changed in <tt>jni/Application.mk</tt>.

<h3>Building and Running AndroWish</h3>

Old school using Apache <tt>ant</tt>:

  #  Refresh the project settings using the android command from Android SDK: <tt>android update project</tt>
  #  Review <tt>local.properties</tt> to point to the directory where the Android SDK resides.
  #  Use <tt>ant</tt> to build AndroWish from scratch: <tt>ant debug</tt>. This includes building the C libraries using Android NDK. That step can be performed separately by running <tt>ndk-build</tt> in the <tt>jni</tt> directory or by invoking <tt>ant ndk-build</tt>
  #  The resulting Android APK is built to <tt>bin/AndroWish-debug.apk</tt> which can be installed onto a device or emulator using <tt>adb install -r bin/AndroWish-debug.apk</tt>.
  #  Start AndroWish on device or emulator using <tt>adb</tt> from the development system: <tt>adb shell am start tk.tcl.wish/.AndroWishLauncher</tt>.
  #  Clean the build tree with <tt>ant clean</tt>.

New style using <tt>gradle</tt>:

  #  Setup your environment regarding the <tt>ndk-build</tt> command e.g. by setting both a proper <tt>PATH</tt> and <tt>ANDROID_NDK_HOME</tt>.
  #  Use <tt>gradle</tt> to build AndroWish from scratch: <tt>gradle assembleDebug</tt>. As above this performs both the NDK build and the final compile and packaging steps.
  #  The resulting Android APK is built to <tt>build/outputs/apk/AndroWish-debug.apk</tt> which can be installed onto a device or emulator using <tt>adb install -r bin/AndroWish-debug.apk</tt>.
  #  Start AndroWish on device or emulator using <tt>adb</tt> from the development system: <tt>adb shell am start tk.tcl.wish/.AndroWishLauncher</tt>.
  #  Clean the build tree with <tt>gradle clean</tt>.

Z 2e5503753b0609821a3c087d923391d5