I have library project with instrumentation test (AndroidTest).
I'm using manifestPlaceholders which I don't want to replace during the library build but in the target app.
Instrumentation tests and Gradle Sync in the AS itself will crash because value for found placeholder doesn't exists.
But I can't define it in this way:
defaultConfig {
manifestPlaceholders = [certPlaceholder:""]
}
Because it will be already replaced in the produced AAR file.
Is there any way how to define manifestPlaceholders just for use in tests?