Quick Start
One page summary of how to use a Band.
On this page
In this guide, we will show you how to use Band to develop Android application.
Steps to use Band
Install Android Studio
Clone Android example project and open
band-example/android/object_detectionit with Android Studiogit clone https://github.com/mrsnu/band-example.gitChange the application ID in
band-example/android/object_detection/app/build.gradleto your own application IDdefaultConfig { applicationId "com.band.example" }Update the package name in
band-example/android/object_detection/app/src/main/AndroidManifest.xmlto your own package name<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.band.example">Change the application name in
band-example/android/object_detection/app/src/main/res/values/strings.xmlto your own application name<resources> <string name="app_name">Band Example</string> </resources>Start developing your own application!