Intro

View instructions on GitHub

Android Studio Installation

  • Download Android Studio 3.6.3 from the download archives (e.g. android-studio-ide-192.6392135-windows.exe)
  • Launch the installer, accept the terms and conditions, and proceed with the default settings

Download Additional Components for Guest Science APK

  • Launch Android Studio
  • Select Tools → SDK Manager.
  • On the SDK Platforms tab, check “Show Package Details” and select the following:
    • “Android SDK Platform 25”
    • “Android SDK Platform 26”
    • “Android SDK Platform 28”
  • On the SDK Tools Tab, check “Show Package Details” and select the following:
    • Under Android SDK Build Tools

      • “25.0.3”
      • “26.0.2”
      • “28.0.3”
      • Uncheck other versions
    • Under NDK (Side by Side)

      • “20.0.5594570”
    • Click the Apply button to install these components

Open the project in Android Studio

  • Clone the repository
git clone git@github.com:oc-robotics/KIBO_RPC-2025.git
  • Launch Android Studio, then choose “Open an existing Android Studio project”, then choose the cloned repository

  • Open YourService.java by navigating to ...\KIBO_RPC-2025\KIBO APK\app\src\main\java\jp\jaxa\iss\kibo\rpc\defaultapk\YourService.java

picture 2

  • You will implement the functions in YourService.java

Next: KiboRPC Program Development