I have a library defining an abstract Activity
. The app using this library extends the Activity, and therefore needs to add it to its AndroidManifest.xml
.
The AndroidManifest.xml
of the library gets merged to the one of the app following some rules.
However, I can't seem to find a way to declare my abstract activity in the AndroidManifest.xml
of the library. I would like to set android:configChanges
and android:launchMode
in the base class instead of having to declare it in the manifests of all the subclasses.
Is that possible in some way?