diff --git a/.github/workflows/android-appcenter.yml b/.github/workflows/android-appcenter.yml index beeb5bf29..4c9594eb4 100644 --- a/.github/workflows/android-appcenter.yml +++ b/.github/workflows/android-appcenter.yml @@ -128,7 +128,7 @@ jobs: run: appcenter test run espresso --token ${{secrets.APPCENTERAPITOKEN}} --app "Picovoice/Porcupine-Android" - --devices "Picovoice/android-min-max" + --devices "Picovoice/single-android" --app-path porcupine-test-app/build/outputs/apk/en/release/porcupine-test-app-en-release.apk --test-series "porcupine-android" --locale "en_US" diff --git a/binding/android/PorcupineTestApp/porcupine-test-app/src/androidTest/java/ai/picovoice/porcupine/testapp/IntegrationTest.java b/binding/android/PorcupineTestApp/porcupine-test-app/src/androidTest/java/ai/picovoice/porcupine/testapp/IntegrationTest.java index f5ee6e07c..1270c24f9 100644 --- a/binding/android/PorcupineTestApp/porcupine-test-app/src/androidTest/java/ai/picovoice/porcupine/testapp/IntegrationTest.java +++ b/binding/android/PorcupineTestApp/porcupine-test-app/src/androidTest/java/ai/picovoice/porcupine/testapp/IntegrationTest.java @@ -26,8 +26,8 @@ import java.util.concurrent.TimeoutException; class WaitForTextAction implements ViewAction { - private String text; - private long timeout; + private final String text; + private final long timeout; public WaitForTextAction(String text, long timeout) { this.text = text;