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_detection
it with Android Studiogit clone https://github.com/mrsnu/band-example.git
Change the application ID in
band-example/android/object_detection/app/build.gradle
to your own application IDdefaultConfig { applicationId "com.band.example" }
Update the package name in
band-example/android/object_detection/app/src/main/AndroidManifest.xml
to 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.xml
to your own application name<resources> <string name="app_name">Band Example</string> </resources>
Start developing your own application!