appStoreURL

This property allows the super app to redirect to the App Store download page.

Note: Must configure this property before initializing the SDK.

Property

copy
/**
 URL for jump to appStore.
 For example : [NSURL URLWithString:[NSString stringWithFormat:@"https://apps.apple.com/xxx/app/someApp/id%@", APPID]];
 */
@property (nonatomic, strong) NSURL *appStoreURL;

Name

Type

Description

Required

appStoreURL

NSURL class

Indicates a URL that redirects to the App Store download page.

Yes

Sample

copy
func createGriverConfiguration() -> GRVConfiguration {
    let configuration = GRVConfiguration()
    configuration.appStoreURL = URL(string:"https://apps.apple.com/xxx/app/someApp/id\(APPID)")
    return configuration
}