Android关闭JIT的方法
Android 2.2的新特性中有条是“使用了全新的JIT内核编译器”,号称性能提高了5倍。有得同学提出JIT会带来稳定性问题,有时会报异常。下面是关闭系统JIT的方法:
在AndroidManifest.xml中把的android:vmSafeMode属性设置true就可以对APK禁用JIT。
示例:
package="test.ts.wader.mytest"
android:versionCode="1"
android:versionName="1.0" >
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:vmSafeMode="true">
android:label="@string/app_name"
android:name=".MyTestActivity" >