To enhance usage scenarios, the mini program SDK offers customizable APIs that allow the superapp to provide unique capabilities for mini programs.
Prerequisites
To customize the mini program SDK APIs, you need to create a class and inherit BaseMiniAppProxyImpl, then add the @ProxyService(proxy = MiniAppProxy.class) annotation.
@ProxyService(proxy = MiniAppProxy.class)
public class MiniAppProxyImpl extends BaseMiniAppProxyImpl{
}
Once the prerequisites are met, you can proceed to customize the mini program SDK APIs according to the relevant documentation.