Update of "Building AndroWish"
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview

Artifact ID: e7a059afe944265351123979f52fddee1a18d24c
Page Name:Building AndroWish
Date: 2014-09-01 05:33:11
Original User: chw
Parent: 17f5c94d7be3ef370bc58b49e56ec807c11fa217 (diff)
Next 6e34ab9c85f926892797ba6c17e9b57bebfc6d60
Content

Requirements

Building and Running AndroWish

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