Today, I saw a DIY Sina Weibo client released by my buddy. I tried it myself and it was really easy to use. Hehe, I 'd like to share it with you.
Link
Http://hi.baidu.com/aqtata817/blog/item/776246021f81b6d87b8947bb.html
First:
Publish with my own Android phone
Welcome to my Weibo
Http://t.sina.com.cn/zylucifer
Well, let's start to complete this function step by step.
1. First download the Sina Weibo Client
Copy the classes. Dex file.
2. Download The smali tool.
Http://code.google.com/p/smali/
3. Then execute
Java-jar baksmali. jar-O out classes. Dex
Decompress the decompiled code to the out folder.
4. Find a tool. I used notepad ++ to open it.
Out/COM/sina/Weibo/constants. smali and rpchelper. smali
5. Replace
5l0wxnhiy4pj794kij7rw5f45vxg9sjo
Is
5jao51nf1i5pdc91hhi3id86ucodtn4c
6. Replace
"Android"
Is
"IPhone"
Note: Enclose the quotation marks
In fact, the above is the key that Sina used to calculate and judge the android client.
Which of the following is the key used to determine the iPhone client?
7. After the replacement is complete, the baksmali tool will be packaged back.
Java-jar smali. jar out-O classes. Dex
8. Then, package classes. Dex into the original compressed package and replace the original classes. Dex.
And then kill the META-INF, that is, the signature folder.
Use your own signature, such as auto-sign or signer. jar.
9. Then release your iPhone Android client Weibo! Haha! Enjoy!
I uploaded a modified APK TO THE csdn download channel.
Http://download.csdn.net/source/3130453
Enjoy ~!
This blog is copyrighted by csdn blogger Zeng Yang
Reprinted please noteHttp://blog.csdn.net/Zengyangtech/archive/2011/03/26/6280622.aspx
The methods provided in this article are only for the Study Institute. Do not use them for other purposes. Any responsibility arising therefrom is irrelevant to me.