Download the SHARP SDK AddOn

JN-DK01 SDK AddOn Quick Start Guide

  1. Installing the Android SDK
    The Android SDK distributed by Google is available on the "Android Developers Site".
    Android Developers Site
    For the SDK Platform, download and use "Android 1.6, API 4, revision 3".

  2. Downloading the SHARP JN-DK01 AddOn
    To download the latest SHARP JN-DK01 AddOn (Compressed file in ZIP format), clickhere:

  3. Uncompressing the AddOn
    Extract the downloaded ZIP file into the /add-ons/ directory.

  4. Executing android update adb
    If you are using Android SDK Tools revision 5 or earlier, navigate to the /tools/ directory and execute the android tool command with the option shown below, and then execute android update adb. If you are using Android SDK Tools revision 6 or later, you do not need to execute android update adb.
    $ android update adb

  5. Verifying the Target ID
    To verify the Target ID for JN-DK01 SDK AddOn, open the command line and execute android list target. In the following example, the Target ID for SHARPJN-DK01 AddOn is "2".
    $ android list target
      Available Android targets:
      id: 1 or "android-4"
         Name: Android 1.6
         Type: Platform
         API level: 4
         Revision: 3
         Skins: HVGA, QVGA, WVGA800 (default), WVGA854
         ABIs : armeabi
      id: 2 or "SHARP Corporation:JN-DK01:4"
         Name: JN-DK01
         Type: Add-On
         Vendor: Sharp Corporation
         Revision: 1
         Description: SHARP JN-DK01 Add-on
         Based on Android 1.6 (API level 4)
         Libraries:
         * jp.co.sharp.android.hardware (hardware.jar)

         * jp.co.sharp.android.io.obex (obex.jar)

        Skins: WVGA854, HVGA, WVGA800, QVGA, JNDK01 (default)
        ABIs : armeabi
        Adds USB support for devices (Vendor: 0x04DD)

  6. Creating the AVD (Android Virtual Device)
    In the following example, the AVD is created using "JNDK01" for the AVD name, "128MB" for the SD card capacity and "2" for the Target ID.
    $ android create avd -n JNDK01 -t 2 --sdcard 128M

  7. Launching the emulator
    Launch the emulator by specifying the AVD "JNDK01" that has been created in the previous step.
    $ emulator @JNDK01 -qemu --cpu cortex-a8

【Note】
With theJN-DK01 AddOn, the emulator can be launched only from the command line. You cannot launch the emulator directly from the Android SDK and AVD Manager.
[Restrictions]
Immediately after start up, the arrow keys on the PC will not work correctly. To make them function correctly, rotate the screen (on the Windows PC, Ctrl + F11 or Ctrl + F12).
Back to Top of Page