fix(iap): open external app for payment (#2465)

This commit is contained in:
Huang Xin 2025-11-18 16:37:43 +05:30 committed by GitHub
parent bfac67d3f0
commit 6d5b16ea8b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 179 additions and 4 deletions

View file

@ -122,6 +122,13 @@ impl<R: Runtime> NativeBridge<R> {
Err(crate::Error::UnsupportedPlatformError)
}
pub fn open_external_url(
&self,
_payload: OpenExternalUrlRequest,
) -> crate::Result<OpenExternalUrlResponse> {
Err(crate::Error::UnsupportedPlatformError)
}
pub fn request_manage_storage_permission(
&self,
) -> crate::Result<RequestManageStoragePermissionResponse> {