• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root open links with their apps rather than the browser

Not sure if you all are as annoyed as I was about links in SMS and email not opening their respective apps but rather just the browser, such as YouTube and Play Store. After a lot of searching i have found out how to change it back to the way it was before Apple sued HTC.
-First your EVO V must be rooted, I used HTCdev method and installed TWRP recovery and superuser, still S-ON. MAKE A BACKUP!

-Next you will need a root file browser and a build.prop editor, I use Rom Toolbox because it has both of the functions needed.

-In the root file browser go to /system/apps and delete the file HTClinkifydispatcher.apk

-Now using the build.prop editor find the line that says "ro.da1.enable". Click on it and change from "true" to "false"

-Reboot into recovery and clear cache and dalvik then reboot.

-Now when you click on a youtube or play store url it will ask you which app you would like to open it with.

I cannot take credit for this. I found it on XDA for another HTC phone running ICS so I tried it on my EVO V and it worked. http://forum.xda-developers.com/showthread.php?t=1696536
Hope it helps.
 
glad I could help, I figured I have lurked this forum enough since I rooted my HTC wildfire, then motorola triumph now my evo with no posts so I found something I thought others with this phone may want to know. :D
 
Anyone good with edify script syntax know why this is failing?

Code:
ui_print("");
ui_print("Fixing links to open via app not browser...");
ui_print("");

ui_print("    Mounting /system");
	mount("ext4", "EMMC", "/dev/block/mmcblk0p23", "/system");

ui_print("    Removing HTClinkifydispatcher.apk");
	delete("/system/app/HTClinkifydispatcher.apk");

ui_print("    Correcting build.prop");
        run_program("/system/xbin/sed", "-i 's/ro.da1.enable=true/ro.da1.enable=false/' /system/build.prop");

ui_print("    Unmounting /system");
        unmount("/system");
 
In harmonia the htc apk doesn't seem to be there. In that case should we just change the true to false in the build Prop? Leslie ann: will this Bork anything in the rom?
 
Back
Top Bottom