I'm at work so I don't have my transformer with me, but if someone wanted to post their /system/app/AWS.apk you could put it in your /system/app folder and it'd work.
Alternatively, you can try this:
1. unzip the kwt-cwm-8.6.5.18.zip file
2. Using wordpad, notepad++, or something else that understands unix line endings (NOT notepad), edit META-INF/com/google/android/updater-script
Find these lines:
Comment them out by putting a # at the beginning of the line
Same thing further down:
Then rezip them up. Make sure that your zip starts at the top level, not above or below it. The top level of the zip should contain blob, META-INF, patch, and system.
You should be able to apply that update yourself.
Alternatively, you can try this:
1. unzip the kwt-cwm-8.6.5.18.zip file
2. Using wordpad, notepad++, or something else that understands unix line endings (NOT notepad), edit META-INF/com/google/android/updater-script
Find these lines:
Code:
assert(apply_patch_check("/system/app/AWS.apk", "78302e676136c231966c31253d0dc15aafc43019", "aec840b51b54fb99300b4c899db9a8f930f44349"));
set_progress(0.018868);
assert(apply_patch_check("/system/app/AWS.odex", "87ed3674e8624c4a779c56fac6b780c14774d225", "e271a84a8e772a38a5a1ffc8525db16c07e98546"));
set_progress(0.028202);
Comment them out by putting a # at the beginning of the line
Same thing further down:
Code:
apply_patch("/system/app/AWS.apk", "-",
78302e676136c231966c31253d0dc15aafc43019, 3598470,
aec840b51b54fb99300b4c899db9a8f930f44349, package_extract_file("patch/system/app/AWS.apk.p"));
set_progress(0.018390);
apply_patch("/system/app/AWS.odex", "-",
87ed3674e8624c4a779c56fac6b780c14774d225, 1783632,
e271a84a8e772a38a5a1ffc8525db16c07e98546, package_extract_file("patch/system/app/AWS.odex.p"));
Then rezip them up. Make sure that your zip starts at the top level, not above or below it. The top level of the zip should contain blob, META-INF, patch, and system.
You should be able to apply that update yourself.