Has Weather Application Stopped Working After iOS 6.x JailBreak Using Evasi0n? Here's A Fix For Power Users!

Although iOS hackers have released iOS 6.x JailBreak for all over the world to download, there are people who have been experiencing issues once they have JailBroken their devices. Previously, we told you a fix regarding “Patching Kernel” where the interrupted JailBreaking process could be simply fixed by force reboot. However, there’s another issue where people couldn’t use Weather application after they have used evasi0n to JailBreak their iOS device.

iOS6-Jailbreak

What actually happens is that the weather.app keeps on crashing once the JailBreak is done. To solve this issue, @pod2g has informed on his blog that the JailBreak has messed up with com.mobile.installation.plist file in iPhone, iPod touch or iPad. The fix which he has suggested is strictly for power users. Here, if you don’t know what you are doing, you should wait for the update of evasi0n update on Cydia which would fix the issue automatically.

Those who couldn’t wait and know the command line stuff using Terminal or SSH could go ahead and apply the fix. The process would destroy the already present plist file and replace it with a new one. Due to which your weather application would start working properly. The script that you would be using to force a rebuild of the file is given below –

#!/bin/bash
chmod -x /usr/libexec/mobile_installation_proxy
killall -9 mobile_installation_proxy
rm /var/mobile/Library/Caches/com.apple.mobile.installation.plist /var/mobile/Library/Caches/com.apple.LaunchServices-045.csstore
launchctl stop com.apple.mobile.installd
launchctl start com.apple.mobile.installd
while [ ! -f /var/mobile/Library/Caches/com.apple.mobile.installation.plist ];
do
      sleep 1
done
while [ ! -f /var/mobile/Library/Caches/com.apple.LaunchServices-045.csstore ];
do
      sleep 1
done
sleep 10
chmod +x /usr/libexec/mobile_installation_proxy
sync
reboot
If the process doesn’t work for you, you can ask your query from @pod2g on Twitter. Also, let’s know in comment section below about any other issue you have been facing on your device after iOS 6.x JailBreak using Evasi0n.