我使用Dagger2。我有下一个代码:
@Provides
@Named("Server API")
String getApiUrl(){}
并使用代码:
public class Client {
@Inject
Client(@Named("Server API") url){}
}
Dexguard / Proguard 会混淆注释中的字符串值吗?
我使用Dagger2。我有下一个代码:
@Provides
@Named("Server API")
String getApiUrl(){}
并使用代码:
public class Client {
@Inject
Client(@Named("Server API") url){}
}
Dexguard / Proguard 会混淆注释中的字符串值吗?