- If you have any questions/comments, please visit Pico Developer Answers and raise your question there.
JAR file, demo apk are in /resource.
Note: Regarding JAR file creation and usage, please refer to the Guideline
This demo provides a method for recording audio via mic. The file is saved in this path(/sdcard/Record/) and named according to the created time.
com.picovr.library.AudioHelper
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.RECORD_AUDIO" />
public void startRecordByMIC()
public void stopRecordByMIC()
AndroidJavaObject audioHelper = new AndroidJavaObject("com.picovr.library.AudioHelper");
audioHelper.Call("startRecordByMIC");
audioHelper.Call("stopRecordByMIC");