Files
android_translation_layer/src/api-impl/android/telephony/PhoneNumberUtils.java
Julian Winkler 3c5a21357d multiple additions and fixes for the Java APIs
Stuff needed for WhatsApp support
2024-08-01 19:57:12 +00:00

13 lines
323 B
Java

package android.telephony;
public class PhoneNumberUtils {
public static boolean isNonSeparator(char c) {
return c != ' ' && c != '\t' && c != '\n' && c != '\r' && c != '-';
}
public static boolean isGlobalPhoneNumber(String phoneNumber) {
return phoneNumber.startsWith("+") || phoneNumber.startsWith("00");
}
}