0

我使用Dagger2。我有下一个代码:

@Provides
@Named("Server API")
String getApiUrl(){}

并使用代码:

public class Client {
   @Inject
   Client(@Named("Server API") url){}
}

Dexguard / Proguard 会混淆注释中的字符串值吗?

4

1 回答 1

1

注释中的字符串值不能被 DexGuard 混淆。

于 2016-11-21T13:24:31.050 回答