Skip to content

Commit

Permalink
0.0.9
Browse files Browse the repository at this point in the history
Fix #6
  • Loading branch information
adrielcafe committed Sep 14, 2016
1 parent c05587a commit 0bf9859
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ repositories {
}
dependencies {
compile 'com.github.adrielcafe:AndroidAudioRecorder:0.0.8'
compile 'com.github.adrielcafe:AndroidAudioRecorder:0.0.9'
}
```

Expand All @@ -65,6 +65,7 @@ dependencies {
- [X] Pause recording
- [ ] Skip silence
- [ ] Animations
- [ ] Landscape screen orientation (only supports portrait at the moment)

## Dependencies
* [OmRecorder](https://github.com/kailash09dabhi/OmRecorder)
Expand Down
3 changes: 2 additions & 1 deletion lib/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
android:allowBackup="true">
<activity
android:name=".AudioRecorderActivity"
android:theme="@style/Theme.AppCompat"/>
android:theme="@style/Theme.AppCompat"
android:screenOrientation="portrait"/>
</application>

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public boolean onCreateOptionsMenu(Menu menu) {
public boolean onOptionsItemSelected(MenuItem item) {
int i = item.getItemId();
if (i == android.R.id.home) {
onBackPressed();
finish();
} else if (i == R.id.action_save) {
selectAudio();
}
Expand Down

0 comments on commit 0bf9859

Please sign in to comment.