I am trying to publish Shiny app. Locally everything is working fine, but when publishing it throws an error:
Loading required package: rlang
Error in value[[3L]](cond) :
package or namespace load failed for ‘dplyr’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘rlang’ 0.4.0 is already loaded, but >= 0.4.6 is required
Calls: local ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted
packages that I am loading (at the beginning of the app.R) are:
library(shiny)
library(stringr)
library(dplyr)
library(readr)
library(tibble)
What might be a problem? How to fix it?
I tried to inlcude library(rlang)
but no difference. Am I doing something wrong?
Thanks!