Skip to content

Commit

Permalink
Instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael McCulloch committed Dec 25, 2022
1 parent 261a704 commit 11fdda9
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 451 deletions.
2 changes: 2 additions & 0 deletions app/src/main/java/com/mjm/whisperVoiceRecognition/Wizard.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import android.os.Bundle;
import android.provider.Settings;
import android.widget.Button;
import android.widget.Toast;

import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
Expand All @@ -31,6 +32,7 @@ protected void onCreate(Bundle savedInstanceState) {
});

btnExit.setOnClickListener(v -> {
Toast.makeText(this, R.string.wizard_completed, Toast.LENGTH_LONG).show();
finish();
});
}
Expand Down
Binary file modified app/src/main/jniLibs/arm64-v8a/librust.so
Binary file not shown.
Binary file modified app/src/main/jniLibs/x86_64/librust.so
Binary file not shown.
7 changes: 4 additions & 3 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
<string name="delete_key_image_text">Delete Key</string>
<string name="toast_permission_denied">Record Audio Permission Denied!</string>
<string name="microphone_permission_denied">Microphone Permission Denied. Grant?</string>
<string name="enable_input_method">Enable Input Method</string>
<string name="enable_input_method">1. Enable Input Method</string>
<string name="toast_grant_microphone_permission">Please Grant Microphone Permission</string>
<string name="grant_microphone_permission">Grant Microphone Permission</string>
<string name="exit">Exit</string>
<string name="wizard_completed">Keyboard Now Available In Keyboard Switcher</string>
<string name="grant_microphone_permission">2. Grant Microphone Permission</string>
<string name="exit">Done!</string>
</resources>
Loading

0 comments on commit 11fdda9

Please sign in to comment.