From 981012f20e655b84f9660ce678a79ef96649a587 Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Wed, 5 Mar 2025 15:13:39 -0800 Subject: [PATCH] IO-3092 Minor mobile app bug fixes. --- .../screen-sign-in/screen-sign-in.component.jsx | 2 ++ eas.json | 15 +++++++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/components/screen-sign-in/screen-sign-in.component.jsx b/components/screen-sign-in/screen-sign-in.component.jsx index a8dc10d..f70bf62 100644 --- a/components/screen-sign-in/screen-sign-in.component.jsx +++ b/components/screen-sign-in/screen-sign-in.component.jsx @@ -70,6 +70,8 @@ export function SignIn({ emailSignInStart, signingIn }) { label={t("signin.fields.password")} mode="outlined" secureTextEntry={true} + autoCorrect={false} + autoCapitalize="none" onChangeText={handleChange("password")} onBlur={handleBlur("password")} value={values.password} diff --git a/eas.json b/eas.json index 4bef6ef..4bf93b5 100644 --- a/eas.json +++ b/eas.json @@ -7,19 +7,26 @@ "developmentClient": true, "channel": "test", "distribution": "internal", - "ios": {} + "ios": {}, + "autoIncrement": true }, "development-simulator": { "developmentClient": true, "channel": "test", "distribution": "internal", - "ios": { "simulator": true } + "ios": { "simulator": true }, + "autoIncrement": true }, "test": { - "channel": "test" + "channel": "test", + "android": { + "buildType": "apk" + }, + "autoIncrement": true }, "production": { - "channel": "production" + "channel": "production", + "autoIncrement": true } }, "submit": {