Installation did not succeed. The application could not be installed: INSTALL_FAILED_OLDER_SDK List...
时间: 2023-10-26 11:30:44 浏览: 89
The application has failed...(应用程序配置不正确)
This error message occurs when you are trying to install an application on a device with an Android version that is lower than the minimum required version specified in the app's manifest file.
To solve this issue, you can either update the Android version of your device to meet the minimum requirement or build the app with a lower minimum SDK version.
To change the minimum SDK version in your app's manifest file, open the `AndroidManifest.xml` file and look for the `minSdkVersion` attribute under the `uses-sdk` tag. Change the value to a lower version number and rebuild the app.
Note that lowering the minimum SDK version may cause some features to not work on older devices and could affect the overall user experience.
阅读全文