Yuta Tomiyama

Results 3 issues of Yuta Tomiyama

maybe fail CI test, but I'll fix this file again

I checked 3 failed past Pull requests, I found they are failed same reasones. **"Error: Target id is not valid. Use 'android list targets' to get the target ids."** I...

Password Scheme ALPHA_NUMERIC_SYMBOLS and ALPHA_NUMERIC_MIXED_CASE_SYMBOLS can't recognize "_" as symbol. This is my suggestion in android-saripaar/saripaar/src/main/java/com/mobsandgeeks/saripaar/rule/PasswordRule.java ` put(Password.Scheme.ALPHA_NUMERIC_SYMBOLS, "(?=.*[a-zA-Z])(?=.*[\\d])(?=.*([^\\w]|_)).+"); put(Password.Scheme.ALPHA_NUMERIC_MIXED_CASE_SYMBOLS, "(?=.*[a-z])(?=.*[A-Z])(?=.*[\\d])(?=.*([^\\w]|_)).+"); `