feat: in-app updater for Android (#885)

This commit is contained in:
Huang Xin 2025-04-14 20:21:58 +08:00 committed by GitHub
parent 5c23642ac0
commit 8efad90932
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
48 changed files with 720 additions and 366 deletions

View file

@ -29,4 +29,11 @@ impl<R: Runtime> NativeBridge<R> {
pub fn use_background_audio(&self, _payload: UseBackgroundAudioRequest) -> crate::Result<()> {
Err(crate::Error::UnsupportedPlatformError)
}
pub fn install_package(
&self,
_payload: InstallPackageRequest,
) -> crate::Result<InstallPackageResponse> {
Err(crate::Error::UnsupportedPlatformError)
}
}