Bug P2
Status Update
Comments
zh...@honor.corp-partner.google.com <zh...@honor.corp-partner.google.com> #2
Thanks for the issue. We've already fixed this for the upcoming Navigation 2.2.0-rc03.
zh...@honor.corp-partner.google.com <zh...@honor.corp-partner.google.com> #3
🤘
zh...@honor.corp-partner.google.com <zh...@honor.corp-partner.google.com> #4
I raised the same issue in android tracker, this issue can be close
Description
Thank you.
868 private static List<String> verifySupportedRelativePaths(List<String> relativePaths) { 869 final List<String> verifiedPaths = new ArrayList<>(); 870 final String lowerCaseDcimDir = Environment.DIRECTORY_DCIM.toLowerCase(Locale.ROOT) + "/"; 871 872 for (String path : relativePaths) { 873 if (path.toLowerCase(Locale.ROOT).startsWith(lowerCaseDcimDir) && path.endsWith("/")) { 874 verifiedPaths.add(path); 875 } else { 876 Log.w(TAG, "Transcoding relative path must be a descendant of DCIM/ and end with" 877 + " '/'. Ignoring: " + path); 878 } 879 } 880 881 return verifiedPaths; 882 }