setNBUpdate

The setNBUpdate function is used to configure the mini program update mode. For details see Mini program update mechanism.

Method signature

copy
setNBUpdate(@NonNull nbupdate: GRVStartupParams.NBUpdate): GRVStartupParams.Builder

Parameters

Parameter

Data Type

Default value

Required

Description

nbupdate

GRVStartupParams.NBUpdate

GRVStartupParams.NBUpdate.DEFAULT

Yes

This parameter is used to configure the mini program update mode .

Valid values are:

  • DEFAULT: indicate the async update mode
  • SYNCFORCE: indicate the syncforce update mode
  • ASYNCFORCE: indicate the asyncforce update mode

If this parameter is not specified, the mini program update mode is async by default.

Sample

copy
val startupParams = GRVStartupParams.createBuilderForApp(context, appId)
    .setNBUpdate(GRVStartupParams.NBUpdate.SYNCFORCE)
    .build()
Griver.openApp(startupParams,null)