tmtit
tmtit
I had the same problem on 9.1.7
I see `number = countryPhonePrefix + telephonyManager.getLine1Number().substring(1); ` in the if block `if (telephonyManager.getLine1Number().startsWith("0"))`. It seems ineffective because right after that, number is reassigned with `number = telephonyManager.getLine1Number();` Could you...
Does that significantly affect the logic or result in the loss of any features? If I add an else statement to reassign the number, will it have a big impact?...