Difference between revisions of "HICN/Android"

From fd.io
Jump to: navigation, search
(Created page with "==Build== ===Build hICN=== The following guide is tested on Ubuntu and macOS <pre> $ git clone https://github.com/icn-team/android-sdk.git $ cd android-sdk $ export ANDROID_AR...")
 
Line 1: Line 1:
 +
== Google Play Store ==
 +
 +
 +
[[File:Google_Play_Store.png|thumb|link=https://play.google.com/store/apps/developer?id=ICN+Team]]
 +
 
==Build==
 
==Build==
 
===Build hICN===
 
===Build hICN===

Revision as of 15:00, 26 September 2019

Google Play Store

Google Play Store.png

Build

Build hICN

The following guide is tested on Ubuntu and macOS

$ git clone https://github.com/icn-team/android-sdk.git
$ cd android-sdk
$ export ANDROID_ARCH="arm64"
$ make all
$ export ANDROID_ARCH="x86"
$ make all

# The hICN Distillery software will be installed in android-sdk/usr_aarch64 and android-sdk/usr_i686

Build and Install Hybrid ICN Network Service for Android App

make android_hicnforwarder
# Optionally, uninstall previous version (to avoid signature mismatch issues)
adb uninstall com.cisco.hicn.forwarder
adb install -r ./HicnForwarderAndroid/app/build/outputs/apk/release/HicnForwarderAndroid.apk

Build and Install Hybrid ICN SpeedTest & Test for Android App

make android_hicntools
adb install -r ./app/build/outputs/apk/release/hICN_Tools.apk

Build and Install Viper ABR video player for Android App

make android_viper
adb install -r build_aarch64/viper/hicn-viper-arm64_v8a/build/outputs/apk/hicn-viper-arm64_v8a-release-signed.apk

Further details are available in the following link: Android Sdk