I use Dagger2. I have next code:
@Provides
@Named("Server API")
String getApiUrl(){}
And consuming code:
public class Client {
@Inject
Client(@Named("Server API") url){}
}
Will Dexguard/Proguard obfuscate strings values in annotation?
I use Dagger2. I have next code:
@Provides
@Named("Server API")
String getApiUrl(){}
And consuming code:
public class Client {
@Inject
Client(@Named("Server API") url){}
}
Will Dexguard/Proguard obfuscate strings values in annotation?
String Values in Annotations can not be obfuscated by DexGuard.