1.fix add walletman

This commit is contained in:
2026-03-27 10:24:38 +08:00
parent 0d168c9046
commit 592351759f
6 changed files with 10 additions and 91 deletions

View File

@@ -1,8 +0,0 @@
import { NativeModules, Platform } from 'react-native';
export async function isModifiedAppInstalled(scheme: string): Promise<boolean> {
if (Platform.OS !== 'android') return false;
const { AppUtilsModule } = NativeModules;
if (!AppUtilsModule) return false;
return await AppUtilsModule.isModifiedAppInstalled(scheme);
}