You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
do you think there is an easy win to facilitate changing namespace based on build variant package names like in the manifest snippet below where com.namespace.local could be com.namespace.test or com.namespace.prod depending on the build variant... currently gradle takes care of replacing namespace in the <manifest packag="com.namespace" with whatever the variant specifies. but the rest needs to either be done through some custom groovy or via manifest merging, neither option is particularly appealing.
Basically, you need certain permissions and categories to match the package name of the app. but the package name is determined at build time and the permissions and categories are hard coded in the source.
do you think there is an easy win to facilitate changing namespace based on build variant package names like in the manifest snippet below where
com.namespace.local
could becom.namespace.test
orcom.namespace.prod
depending on the build variant... currently gradle takes care of replacing namespace in the<manifest packag="com.namespace"
with whatever the variant specifies. but the rest needs to either be done through some custom groovy or via manifest merging, neither option is particularly appealing.The text was updated successfully, but these errors were encountered: