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": {