问题描述
我写 -assumenosideeffects类android.util.Log
我的应用程序。但如何利用这一点。
I write -assumenosideeffects class android.util.Log
in my app. but how to use this.
-assumenosideeffects class android.util.Log
{
public static int d(...);
public static int v(...);
public static int i(...);
public static int e(...);
}
在 proguard.cfg
文件。但不工作。
推荐答案
HTTP ://proguard.sourceforge.net/index.html#manual/usage.html ,它说--assumenosideffects是只有当优化适用。
- $ {} sdk.dir /tools/proguard/proguard-android.txt表示:优化默认情况下,地塞米松关闭不喜欢通过ProGuard的优化和preverify步骤code运行。
From http://proguard.sourceforge.net/index.html#manual/usage.html, it says --assumenosideffects is "Only applicable when optimizing". -${sdk.dir}/tools/proguard/proguard-android.txt says: "Optimization is turned off by default. Dex does not like code run through the ProGuard optimize and preverify steps".
的
这篇关于如何使用-assumenosideeffects类android.util.Log在我的应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!