Tencent / tinker

Tinker is a hot-fix solution library for Android, it supports dex, library and resources update without reinstall apk.
Other
17.11k stars 3.33k forks source link

fix bug for #1525 #1508 #1538

Closed yanbober closed 3 years ago

yanbober commented 3 years ago

fix bug for #1525 #1508

windows file path 分隔符正则替换问题,由于 java 的 String replaceAll 方法第一个参数是正则表达式,故而要经过两次转义,一次Java、一次正则,所以原来直接File.separator在 windows 下存在兼容问题,修正为Matcher.quoteReplacement(File.separator)兼容。

tys282000 commented 3 years ago

Thx!