In Progress Searching in browser sends me to Google homepage


Try pushing this apk to /system/app, set permissions (rw-r--r--). It's from the 2.7.27 build. Remember to make a backup just in case.
 

Attachments

  • 2.7.27_browser.apk_fixed.zip
    2 MB · Views: 256
This was definitely fixed in 2.7.27. I'm testing it right now on my NS and its fixed.

What phone is still having a problem?
 
& is not fixed.
And apktool-lib/src/main/java/brut/androlib/res/xml/ResXmlEncoders.java is not the reason of this bug. It does its work good (replaces "&" -> "&amp;" and "<" -> "&lt;"). I managed it just putting System.out.println(str.replace("&","&amp;").replace("<","&lt;")) with condition that str containes "&" symbol. All strings have normally escaped html symbols "&" and "<".
The problem is in another method.
I think we need to check not the only char "&" while encoding, but the char sequence "&amp;"...