1e41f4b71Sopenharmony_ci# USB Subsystem API Changelog 2e41f4b71Sopenharmony_ci 3e41f4b71Sopenharmony_ci## cl.usb_manager.1 SDK API Deletion 4e41f4b71Sopenharmony_ci 5e41f4b71Sopenharmony_ciFor applications developed based on earlier versions, you need to change the name of the imported bundle. Otherwise, the original service logic will be affected. 6e41f4b71Sopenharmony_ci 7e41f4b71Sopenharmony_ci**Key API/Component Changes** 8e41f4b71Sopenharmony_ci 9e41f4b71Sopenharmony_ciThe **@ohos.usbV9.d.ts** file is replaced by the **@ohos.usbManager.d.ts** file. 10e41f4b71Sopenharmony_ci 11e41f4b71Sopenharmony_ci| New Bundle | Original Bundle | Deleted Bundle | 12e41f4b71Sopenharmony_ci| -------------------- | ------------- | --------------- | 13e41f4b71Sopenharmony_ci| ohos.usbManager.d.ts | ohos.usb.d.ts | ohos.usbV9.d.ts | 14e41f4b71Sopenharmony_ci 15e41f4b71Sopenharmony_ciYou need to import **@ohos.usbManager** to use USB service APIs. 16e41f4b71Sopenharmony_ci 17e41f4b71Sopenharmony_ci ```ts 18e41f4b71Sopenharmony_ci import usbManager from '@ohos.usbManager'; 19e41f4b71Sopenharmony_ci ``` 20e41f4b71Sopenharmony_ci 21e41f4b71Sopenharmony_ci**Adaptation Guide** 22e41f4b71Sopenharmony_ci 23e41f4b71Sopenharmony_ciFor details about usage of each API, see the [API Reference](../../../application-dev/reference/apis/js-apis-usbManager.md). 24