Assigned
Status Update
Comments
sg...@google.com <sg...@google.com> #2
Automated by Blunderbuss job workspace-devrel-public-issue-tracker-blunderbuss-autoassigner for config assign for component 191640.
No update yet.
Description
The API was added in Android V.
int Character.codePointOf(String)
In the platform implementation libcore use native and call ICU. The Java ICU has
getCharFromName
, which I think is the method to use (we have to check) starting from API level 24 which we could consider and then only have the backport from API level 24. Below API level 24 (and above API level 34) we can then still callCharacter.codePointOf
to get theNoSuchMethodError
for older versions and the libcore behavior when present (like the backport ofgetMajorSdkVersion
andgetMinorSdkVersion
inAndroidOsBuildMethods
).This is created from b/388147728#comment5 .