Perform the following steps to build a complete new Android app that uses the speech_commands_graph.pb model we built in the last section:
- Create a new Android app named AudioRecognition by accepting all the defaults as in the previous chapters, then add the compile 'org.tensorflow:tensorflow-android:+' line to the end of the app's build.gradle file's dependencies.
- Add <uses-permission android:name="android.permission.RECORD_AUDIO" /> to the app's AndroidManifest.xml file so the app can be allowed to record audio.
- Create a new assets folder, then drag and drop the speech_commands_graph.pb and conv_actions_labels.txt files, generated in steps 2 and 3 in the previous section, to the assets folder.
- Change ...