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:
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)