That was also my first guess. I have
. So I fired it up and checked with "span". You can see from the attachment that only libraries with "span" is htmltools, shiny and geoshpere. I tried to load library of "geosphere" first then launch the app, but there was no error.
When I first met the problem, the error message indicated that problem was with this line:
showNotification(span(icon("spinner fa-spin"), "Importing data..."), type = "message", duration = NULL)
I changed "span" into "tags$span". Then when the problem appear again, it was about a second occurrence of similar usage:
showNotification(span(icon("spinner fa-spin"), "Downloading studies..."), type = "message", duration = NULL)
So it definitely was caused by naming conflict with "span", but I'm not sure which package caused that, since I have searched all my packages. And I believe there is no variable named "span" in my global environment.
Anyway, the problem should be solved with using full qualified name. Thanks!