Hi, does anyone know of a way to dynamically gener...
# android
l
Hi, does anyone know of a way to dynamically generate AndroidManifest elements at compile time? I'm thinking of a way to make a kapt library automatically register some generated components in the manifest
m
couldn’t your plugin also generate a manifest file that will be merged with the main manifest at build time?
m
It can be done but not with annotation processing. You can create gradle plugin for that.
n
gradle plugin seems the most accurate way to do it.
l
Is there any gradle plugin example that does this? (in Kotlin if there's one)