https://www.gravatar.com/avatar/7a0c24f697ea1587001c36d00039b60f?s=240&d=mp

[转]创业三十六条军规

原文地址:http://www.itfarmer.com.cn/goodtext/1522.html

第1条:创业者,人生之大事也,不可轻启。创业是带着一群未知的人去一个未知的地方干一件未知的事儿,九死一生,如果没有做好破釜沉舟的决心,最好不要启程。

[转]谷歌史上最大失误:错过Java

【51CTO 6月23日外电头条】早在2009年,Oracle公司就斥资74亿美元收购了在Unix服务器硬件领域光彩夺目的制造企业Sun Microsystems 。许多人当时都在猜测谷歌是否也是此次竞购的买家之一。谷歌的资金储备无疑是雄厚的,不过真正的问题在于收购的理由:许多分析人士都认为Sun公司的黄金时期已成往事,谷歌并没有充分的理由将其招至麾下。

adb命令大全

Android Debug Bridge version 1.0.29

-d – directs command to the only connected USB device

returns an error if more than one USB device is present.

-e – directs command to the only running emulator.

returns an error if more than one emulator is running.

-s – directs command to the USB device or emulator with

the given serial number. Overrides ANDROID_SERIAL environment variable.

-p – simple product name like ‘sooner’, or a relative/absolute path to a product

android中odex文件的合并和生成

1. 下载 http://smali.googlecode.com/ 里的smali.jar和baksmali.jar两个包

2 . 通过odex生成class文件

1
java -jar baksmali-1.3.2.jar -x xxx.odex

执行完上面这行命令后,会生成一个out 文件夹里面是xxx.odex的class文件。出现问题,根据提示可以从rom的 /system/framework 目录下面找,然后放在odex的同一目录,注意的时当前CMD的路径要在当前目录

android实现单个任务依次执行

之前有一篇文章介绍了用thread的join()方法来实现,但是我在实际应用过程中发现了一个问题,就是当任务占用时间过长时,会导致service的超时,太杯具了,研究了下,发现也许有更好的方法,还没来得及测试,先记录。

AntiLVL – Android License Verification Library Subversion

[ What is it? ]
AntiLVL's purpose is to subvert standard license protection methods such as the Android License Verification Library (LVL), Amazon Appstore DRM and Verizon DRM. It also disables many anti-cracking and anti-tampering protection methods. Because every implementation of the LVL is potentially (and often is) quite different, it's not possible to automate patching in every case. It will not always work. However, it has been designed to get around obfuscation and to apply many variations.
Under the hood, AntiLVL is a configurable Smali code patcher with rules defined in user-modifiable XML files stored inside the jar called fingerprints. Brief summary of how it works:
* Decompiles the Apk
* Perform  regular expression matching
* Carrie out defined modifications
* Recompile, update classes.dex
* Resign and zipalign

[这是神马?] 英文不好,意思大概就是这个东西可以用来绕过android的签名验证,可以给smail代码打补丁,重新修改xml文件里面的规则等等。