if I'm using apollo in a library module that will ...
# apollo-kotlin
b
if I'm using apollo in a library module that will be shipped as a standalone SDK - is there a way to not expose the fragments, queries, etc from being visible in the apps that use the SDK?
k
You can set Apollo to generate models as internal in the gradle plugin
2
b
with:
Copy code
apollo {
  service("service") {
    // ...
    generateAsInternal.set(true)
  }
}
b
Legit thank you. Missed this in the config options