| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /**
- * App 端编译时模块入口为 uts-proxy,Promise 封装请从 @/utils/permission-manager 引入。
- */
- // #ifdef APP-ANDROID
- export {
- checkPermissionSync,
- checkPermissionsSync,
- checkPermission,
- checkPermissions,
- requestPermission,
- requestPermissions,
- openAppSettings,
- getSupportedPermissionsSync,
- getBluetoothDemoInfoSync,
- } from './utssdk/app-android/index.uts'
- // #endif
- // #ifdef APP-IOS
- export {
- checkPermissionSync,
- checkPermissionsSync,
- checkPermission,
- checkPermissions,
- requestPermission,
- requestPermissions,
- openAppSettings,
- getSupportedPermissionsSync,
- getBluetoothDemoInfoSync,
- } from './utssdk/app-ios/index.uts'
- // #endif
- // #ifdef APP-HARMONY
- export {
- checkPermissionSync,
- checkPermissionsSync,
- checkPermission,
- checkPermissions,
- requestPermission,
- requestPermissions,
- openAppSettings,
- getSupportedPermissionsSync,
- getBluetoothDemoInfoSync,
- } from './utssdk/app-harmony/index.uts'
- // #endif
|