我通过RInno库创建了安装程序闪亮应用程序。还实现了安装时的密码验证。我能够在Windows机器上安装闪亮的应用程序。 目前,我正在寻找在已安装的闪亮应用程序中设置到期日期,该应用程序不应允许应用程序在到期后使用。 下面是创建安装程序的代码......
#Source: https://github.com/ficonsulting/RInno
# If you don't have development tools, install them
install.packages("devtools")
require(devtools)
# Use install_github to get RInno
devtools::install_github("ficonsulting/RInno", build_vignettes = TRUE)
# Require Package
require(RInno)
# Build an installer
create_app(app_name = "app",
app_dir = "app",
include_R = T,
R_version = "3.4.1",
dir_out = "app_inst",
inst_pw = "pass@123"
)
# compile the installer
compile_iss()
请帮我实施。