Is it possible to have cocoapods integration only ...
# multiplatform
g
Is it possible to have cocoapods integration only for tests?
v
You could try replacing compilation in framework’s configuration
Copy code
cocoapods {
    ...
    framework {
        ...
        compilation = target.compilations["test"]
    }
}
I didn’t test this. It’s most likely completely unconventional, unsupported and otherwise illegal, but no harm in trying
g
Cool, I'll give it a try, thx!