Skip to content

Commit

Permalink
Update version to 0.6.04
Browse files Browse the repository at this point in the history
+ fix a potential NPE
  • Loading branch information
Kaljurand committed Aug 14, 2013
1 parent ebfbcfd commit 52391ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ee.ioc.phon.android.arvutaja"
android:versionCode="603"
android:versionName="0.6.03" >
android:versionCode="604"
android:versionName="0.6.04" >

<uses-sdk
android:minSdkVersion="14"
Expand Down
4 changes: 3 additions & 1 deletion app/src/ee/ioc/phon/android/arvutaja/ArvutajaActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,9 @@ public boolean onTouch(View v, MotionEvent event) {
mButtonMicrophone.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
if (mState == State.INIT || mState == State.ERROR) {
mTts.stop();
if (mTts != null) {
mTts.stop();
}
if (audioCue != null) {
audioCue.playStartSoundAndSleep();
}
Expand Down

0 comments on commit 52391ff

Please sign in to comment.