Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
adrielcafe committed Aug 18, 2016
1 parent ac190da commit d08d420
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# AndroidAudioRecorder

> A pretty way to record .wav audio on Android
> A fancy audio recorder for Android. It supports `WAV` format.
![Screenshots](https://raw.githubusercontent.com/adrielcafe/AndroidAudioRecorder/master/screenshots.png)

Expand All @@ -16,7 +16,7 @@

2 - Open the recorder activity
```java
String filePath = Environment.getExternalStorageDirectory() + "/audio.wav";
String filePath = Environment.getExternalStorageDirectory() + "/recorded_audio.wav";
int color = getResources().getColor(R.color.colorPrimaryDark);
int requestCode = 0;
AndroidAudioRecorder.with(this)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import cafe.adriel.androidaudiorecorder.Util;

public class MainActivity extends AppCompatActivity {
private static final String AUDIO_FILE_PATH = Environment.getExternalStorageDirectory() + "/audio.wav";
private static final String AUDIO_FILE_PATH = Environment.getExternalStorageDirectory() + "/recorded_audio.wav";
private static final int RECORD_AUDIO = 0;

@Override
Expand Down

0 comments on commit d08d420

Please sign in to comment.