1e41f4b71Sopenharmony_ci# Input Method Framework ChangeLog 2e41f4b71Sopenharmony_ci 3e41f4b71Sopenharmony_ci## cl.inputmethod_frameworks.1 API Filename Change 4e41f4b71Sopenharmony_ci 5e41f4b71Sopenharmony_ciThe following modules do not comply with the OpenHarmony API file naming rules. Therefore, they are modified in API version 9 and later. 6e41f4b71Sopenharmony_ci 7e41f4b71Sopenharmony_ci**Change Impacts** 8e41f4b71Sopenharmony_ci 9e41f4b71Sopenharmony_ciThe SDK after the change is incompatible with the earlier versions. Therefore, adaptation is required for applications developed in earlier versions so that they can be properly built with the SDK in the new version. 10e41f4b71Sopenharmony_ci 11e41f4b71Sopenharmony_ci**Key API/Component Changes** 12e41f4b71Sopenharmony_ci 13e41f4b71Sopenharmony_ci| Module| File Name Before Change| File Name After Change| 14e41f4b71Sopenharmony_ci|------|--------------|--------------| 15e41f4b71Sopenharmony_ci| Input method framework module| @ohos.inputmethod.d.ts |@ohos.inputMethod.d.ts | 16e41f4b71Sopenharmony_ci| Input method service module|@ohos.inputmethodengine.d.ts | @ohos.inputMethodEngine.d.ts | 17e41f4b71Sopenharmony_ci| Input method ExtentionAbility module| @ohos.inputmethodextensionability.d.ts | @ohos.InputMethodExtensionAbility.d.ts | 18e41f4b71Sopenharmony_ci| Input method ExtentionContext module|@ohos.inputmethodextensioncontext.d.ts | @ohos.InputMethodExtensionContext.d.ts | 19e41f4b71Sopenharmony_ci| Input method subtype module| @ohos.inputMethodSubtype.d.ts | @ohos.InputMethodSubtype.d.ts | 20e41f4b71Sopenharmony_ci 21e41f4b71Sopenharmony_ci**Adaptation Guide** 22e41f4b71Sopenharmony_ci 23e41f4b71Sopenharmony_ciIn the application code, change the name of the d.ts file following **import** to the new file name, which complies with the UpperCamelCase or lowerCamelCase style. 24e41f4b71Sopenharmony_ci 25e41f4b71Sopenharmony_ciExample: 26e41f4b71Sopenharmony_ci 27e41f4b71Sopenharmony_ci```js 28e41f4b71Sopenharmony_ciimport inputMethodEngine from '@ohos.inputMethodEngine'; 29e41f4b71Sopenharmony_ci``` 30e41f4b71Sopenharmony_ci 31e41f4b71Sopenharmony_ci 32